public enum AuthTestType extends Enum<AuthTestType>
| Enum Constant and Description |
|---|
deleteToken |
generateLongLivedToken |
generateSessionToken |
listToken |
validateToken |
| Modifier and Type | Method and Description |
|---|---|
static AuthTestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthTestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthTestType validateToken
public static final AuthTestType deleteToken
public static final AuthTestType listToken
public static final AuthTestType generateLongLivedToken
public static final AuthTestType generateSessionToken
public static AuthTestType[] values()
for (AuthTestType c : AuthTestType.values()) System.out.println(c);
public static AuthTestType 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 nullCopyright © 2016. All rights reserved.