public static enum AccessTokenInfo.TokenStatus extends java.lang.Enum<AccessTokenInfo.TokenStatus>
| Enum Constant and Description |
|---|
NO_TOKEN_NEEDED |
TOKEN_NOT_VALID |
TOKEN_OK |
| Modifier and Type | Method and Description |
|---|---|
static AccessTokenInfo.TokenStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessTokenInfo.TokenStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessTokenInfo.TokenStatus NO_TOKEN_NEEDED
public static final AccessTokenInfo.TokenStatus TOKEN_OK
public static final AccessTokenInfo.TokenStatus TOKEN_NOT_VALID
public static AccessTokenInfo.TokenStatus[] values()
for (AccessTokenInfo.TokenStatus c : AccessTokenInfo.TokenStatus.values()) System.out.println(c);
public static AccessTokenInfo.TokenStatus 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 nullCopyright © 2024. All Rights Reserved.