Package 

Enum ReviewScreenEvent

  • All Implemented Interfaces:

    
    public enum ReviewScreenEvent
    
                        

    Events triggered on the review screen.

    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 onBackPressed). You need to check whether all the events you are interested in are triggered.

    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BACK

      Triggers when the user presses back.(Screen API only)

      NEXT

      Triggers when the user presses the next button.(Screen API + Component API)

      UPLOAD_ERROR

      Triggers when upload failed.(Screen API + Component API)

      Use the keys in ReviewScreenEvent.UPLOAD_ERROR_DETAILS_MAP_KEY to get details about the event from the details map.

    • Method Summary

      Modifier and Type Method Description
      static Array<ReviewScreenEvent> values() Returns an array containing the constants of this enum type, in the order they're declared.
      static ReviewScreenEvent valueOf(String name) Returns the enum constant of this type with the specified name.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • values

         static Array<ReviewScreenEvent> 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.

      • valueOf

         static ReviewScreenEvent valueOf(String name)

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