public static enum OAuth2Definition.Flow extends Enum<OAuth2Definition.Flow>
Enum Constant and Description |
---|
ACCESS_CODE |
APPLICATION |
IMPLICIT |
PASSWORD |
Modifier and Type | Method and Description |
---|---|
static OAuth2Definition.Flow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuth2Definition.Flow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuth2Definition.Flow IMPLICIT
public static final OAuth2Definition.Flow ACCESS_CODE
public static final OAuth2Definition.Flow PASSWORD
public static final OAuth2Definition.Flow APPLICATION
public static OAuth2Definition.Flow[] values()
for (OAuth2Definition.Flow c : OAuth2Definition.Flow.values()) System.out.println(c);
public static OAuth2Definition.Flow 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 © 2017. All Rights Reserved.