Enum Action

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Action>

    public enum Action
    extends java.lang.Enum<Action>
    Version:
    August 20, 2019
    • Enum Constant Detail

      • CLIENT_REGISTRATION

        public static final Action CLIENT_REGISTRATION
      • CLIENT_UPDATE

        public static final Action CLIENT_UPDATE
      • CLIENT_READ

        public static final Action CLIENT_READ
      • CLIENT_DELETE

        public static final Action CLIENT_DELETE
      • USER_AUTHORIZATION

        public static final Action USER_AUTHORIZATION
      • BACKCHANNEL_AUTHENTICATION

        public static final Action BACKCHANNEL_AUTHENTICATION
      • BACKCHANNEL_DEVICE_REGISTRATION

        public static final Action BACKCHANNEL_DEVICE_REGISTRATION
      • USER_INFO

        public static final Action USER_INFO
      • TOKEN_REQUEST

        public static final Action TOKEN_REQUEST
      • TOKEN_VALIDATE

        public static final Action TOKEN_VALIDATE
      • TOKEN_REVOCATION

        public static final Action TOKEN_REVOCATION
      • SESSION_UNAUTHENTICATED

        public static final Action SESSION_UNAUTHENTICATED
      • SESSION_AUTHENTICATED

        public static final Action SESSION_AUTHENTICATED
      • SESSION_DESTROYED

        public static final Action SESSION_DESTROYED
      • DEVICE_CODE_AUTHORIZATION

        public static final Action DEVICE_CODE_AUTHORIZATION
    • Method Detail

      • values

        public static Action[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Action c : Action.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Action valueOf​(java.lang.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.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Action>