public enum ClientAccessTokenType extends java.lang.Enum<ClientAccessTokenType>
| Enum Constant and Description |
|---|
CALLER_IDENTITY |
EXTENSION_CALLBACK |
| Modifier and Type | Method and Description |
|---|---|
static ClientAccessTokenType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClientAccessTokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientAccessTokenType CALLER_IDENTITY
public static final ClientAccessTokenType EXTENSION_CALLBACK
public static ClientAccessTokenType[] values()
for (ClientAccessTokenType c : ClientAccessTokenType.values()) System.out.println(c);
public static ClientAccessTokenType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null