Package zendesk.support.requestlist
Class RequestListUiConfig.Builder
- java.lang.Object
-
- zendesk.support.requestlist.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 aUiConfig
for the passed in configuration options.Intent
intent(Context context)
Create anIntent
to start theRequestListActivity
with the specified configuration options.void
show(Context context)
Show theRequestListActivity
with the specified configuration options.RequestListUiConfig.Builder
withUiConfigs(java.util.List<UiConfig> uiConfigs)
Configurations for screen that can be started from RequestListActivity.RequestListUiConfig.Builder
withUiConfigs(UiConfig... uiConfigs)
Configurations for screen that can be started from RequestListActivity.
-
-
-
Method Detail
-
withUiConfigs
public RequestListUiConfig.Builder withUiConfigs(UiConfig... uiConfigs)
Configurations for screen that can be started from RequestListActivity.
-
withUiConfigs
public RequestListUiConfig.Builder withUiConfigs(java.util.List<UiConfig> uiConfigs)
Configurations for screen that can be started from RequestListActivity.
-
show
public void show(Context context)
Show theRequestListActivity
with the specified configuration options.- Parameters:
context
- The context whichstartActivity
will be invoked on
-
intent
public Intent intent(Context context)
Create anIntent
to start theRequestListActivity
with the specified configuration options.- Parameters:
context
- The context whichstartActivity
will be invoked on- Returns:
- An
Intent
forRequestListActivity
with the specified configuration options
-
-