Enum TokenScope

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

    public enum TokenScope
    extends java.lang.Enum<TokenScope>
    An api token scope available for creation
    • Enum Constant Detail

      • PASSWORD_RESET

        public static final TokenScope PASSWORD_RESET
      • CONFIRM_EMAIL

        public static final TokenScope CONFIRM_EMAIL
      • USER_READ

        public static final TokenScope USER_READ
      • USER_READ_WRITE

        public static final TokenScope USER_READ_WRITE
      • USER_ADMIN

        public static final TokenScope USER_ADMIN
      • ARRAY_READ

        public static final TokenScope ARRAY_READ
      • ARRAY_READ_WRITE

        public static final TokenScope ARRAY_READ_WRITE
      • ARRAY_ADMIN

        public static final TokenScope ARRAY_ADMIN
      • ORGANIZATION_READ

        public static final TokenScope ORGANIZATION_READ
      • ORGANIZATION_READ_WRITE

        public static final TokenScope ORGANIZATION_READ_WRITE
      • ORGANIZATION_ADMIN

        public static final TokenScope ORGANIZATION_ADMIN
      • GROUP_READ

        public static final TokenScope GROUP_READ
      • GROUP_READ_WRITE

        public static final TokenScope GROUP_READ_WRITE
      • GROUP_ADMIN

        public static final TokenScope GROUP_ADMIN
    • Method Detail

      • values

        public static TokenScope[] 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 (TokenScope c : TokenScope.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TokenScope 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
      • getValue

        public java.lang.String getValue()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<TokenScope>
      • fromValue

        public static TokenScope fromValue​(java.lang.String value)