public final class ReviewScreenEvent
extends java.lang.Enum
If you use the Screen API all events will be triggered automatically.
If you use the Component API some events will not be triggered (for ex. events which rely on Activity#onBackPressed()
). You
need to check whether all the events you are interested in are triggered.
Modifier and Type | Class and Description |
---|---|
static class |
ReviewScreenEvent.UPLOAD_ERROR_DETAILS_MAP_KEY
Keys to retrieve details about the
ReviewScreenEvent.UPLOAD_ERROR event. |
Modifier and Type | Field and Description |
---|---|
static ReviewScreenEvent |
BACK
Triggers when the user presses back.(Screen API only)
|
static ReviewScreenEvent |
NEXT
Triggers when the user presses the next button.(Screen API + Component API)
|
static ReviewScreenEvent |
UPLOAD_ERROR
Triggers when upload failed.(Screen API + Component API)
|
Modifier and Type | Method and Description |
---|---|
static ReviewScreenEvent |
valueOf(java.lang.String name) |
static ReviewScreenEvent[] |
values() |
public static final ReviewScreenEvent BACK
public static final ReviewScreenEvent NEXT
public static final ReviewScreenEvent UPLOAD_ERROR
Use the keys in ReviewScreenEvent.UPLOAD_ERROR_DETAILS_MAP_KEY
to get details about the event from the details map.
public static ReviewScreenEvent[] values()
public static ReviewScreenEvent valueOf(java.lang.String name)