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, java.util.List<UiConfig> uiConfigs)
Create anIntent
to start theRequestListActivity
with the specified configuration options.Intent
intent(Context context, UiConfig... uiConfigs)
Create anIntent
to start theRequestListActivity
with the specified configuration options.void
show(Context context, java.util.List<UiConfig> uiConfigs)
Show theRequestListActivity
with the specified configuration options.void
show(Context context, UiConfig... uiConfigs)
Show theRequestListActivity
with the specified configuration options.
-
-
-
Method Detail
-
show
public void show(Context context, UiConfig... uiConfigs)
Show theRequestListActivity
with the specified configuration options.- Parameters:
context
- The context whichstartActivity
will be invoked onuiConfigs
- Configurations for screens that can be started from RequestListActivity.
-
show
public void show(Context context, java.util.List<UiConfig> uiConfigs)
Show theRequestListActivity
with the specified configuration options.- Parameters:
context
- The context whichstartActivity
will be invoked onuiConfigs
- Configurations for screens that can be started from RequestListActivity.
-
intent
public Intent intent(Context context, UiConfig... uiConfigs)
Create anIntent
to start theRequestListActivity
with the specified configuration options.- Parameters:
context
- The context whichstartActivity
will be invoked onuiConfigs
- Configurations for screens that can be started from RequestListActivity.- Returns:
- An
Intent
forRequestListActivity
with the specified configuration options
-
intent
public Intent intent(Context context, java.util.List<UiConfig> uiConfigs)
Create anIntent
to start theRequestListActivity
with the specified configuration options.- Parameters:
context
- The context whichstartActivity
will be invoked onuiConfigs
- Configurations for screens that can be started from RequestListActivity.- Returns:
- An
Intent
forRequestListActivity
with the specified configuration options
-
-