Enum ActionHandlingMethod
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum ActionHandlingMethod extends Enum<ActionHandlingMethod>
Used to configure the method used to handle actions.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<ActionHandlingMethod>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description PREFER_NATIVEThe action will be handled in a native way (e.g. using a SDK). If there is no way to handle the action natively, then a fallback method will be used (e.g. a web flow).
PREFER_WEBThe action will be handled with a web flow. If there is no way to handle the action with a web flow, then native method will be used.
-
Method Summary
Modifier and Type Method Description final ActionHandlingMethodvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<ActionHandlingMethod>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<ActionHandlingMethod>getEntries()Used to configure the method used to handle actions. -
-
Method Detail
-
valueOf
final ActionHandlingMethod valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<ActionHandlingMethod> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<ActionHandlingMethod> getEntries()
Used to configure the method used to handle actions.
-
-
-
-