Class RequestListUiConfig.Builder

  • Enclosing class:
    RequestListUiConfig


    public static class RequestListUiConfig.Builder
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor and Description
      Builder() 
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      UiConfig config()
      Create a UiConfig for the passed in configuration options.
      Intent intent(Context context, java.util.List<UiConfig> uiConfigs)
      Create an Intent to start the RequestListActivity with the specified configuration options.
      Intent intent(Context context, UiConfig... uiConfigs)
      Create an Intent to start the RequestListActivity with the specified configuration options.
      void show(Context context, java.util.List<UiConfig> uiConfigs)
      Show the RequestListActivity with the specified configuration options.
      void show(Context context, UiConfig... uiConfigs)
      Show the RequestListActivity with the specified configuration options.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • show

        public void show(Context context,
                         UiConfig... uiConfigs)
        Show the RequestListActivity with the specified configuration options.
        Parameters:
        context - The context which startActivity will be invoked on
        uiConfigs - Configurations for screens that can be started from RequestListActivity.
      • show

        public void show(Context context,
                         java.util.List<UiConfig> uiConfigs)
        Show the RequestListActivity with the specified configuration options.
        Parameters:
        context - The context which startActivity will be invoked on
        uiConfigs - Configurations for screens that can be started from RequestListActivity.
      • intent

        public Intent intent(Context context,
                             UiConfig... uiConfigs)
        Create an Intent to start the RequestListActivity with the specified configuration options.
        Parameters:
        context - The context which startActivity will be invoked on
        uiConfigs - Configurations for screens that can be started from RequestListActivity.
        Returns:
        An Intent for RequestListActivity with the specified configuration options
      • intent

        public Intent intent(Context context,
                             java.util.List<UiConfig> uiConfigs)
        Create an Intent to start the RequestListActivity with the specified configuration options.
        Parameters:
        context - The context which startActivity will be invoked on
        uiConfigs - Configurations for screens that can be started from RequestListActivity.
        Returns:
        An Intent for RequestListActivity with the specified configuration options
      • config

        public UiConfig config()
        Create a UiConfig for the passed in configuration options.