public enum AuthEntryType extends Enum<AuthEntryType>
Enum Constant and Description |
---|
ACL_BINDING |
IDENTITY_POOL |
JWT_ISSUER |
LATENCY_RECORD |
ROLE_BINDING |
STATUS |
USER |
Modifier and Type | Method and Description |
---|---|
static AuthEntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthEntryType ROLE_BINDING
public static final AuthEntryType USER
public static final AuthEntryType STATUS
public static final AuthEntryType ACL_BINDING
public static final AuthEntryType JWT_ISSUER
public static final AuthEntryType IDENTITY_POOL
public static final AuthEntryType LATENCY_RECORD
public static AuthEntryType[] values()
for (AuthEntryType c : AuthEntryType.values()) System.out.println(c);
public static AuthEntryType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null