Enum ActionHandlingMethod

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      PREFER_NATIVE

      The 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_WEB

      The 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 ActionHandlingMethod valueOf(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.
      • Methods inherited from class kotlin.Enum

        getName, getOrdinal
      • Methods inherited from class java.lang.Object

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

    • 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.