Enum Constant and Description |
---|
accessCode |
application |
implicit |
password |
Modifier and Type | Method and Description |
---|---|
static OAuthFlow |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OAuthFlow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthFlow accessCode
public static final OAuthFlow implicit
public static final OAuthFlow password
public static final OAuthFlow application
public static OAuthFlow[] values()
for (OAuthFlow c : OAuthFlow.values()) System.out.println(c);
public static OAuthFlow 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 © 2017-2022 Okta. All Rights Reserved.