@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2023-06-29T14:11:29.890-05:00[America/Chicago]") public enum OAuthFlow extends Enum<OAuthFlow>
| Enum Constant and Description | 
|---|
ACCESS_CODE  | 
APPLICATION  | 
IMPLICIT  | 
PASSWORD  | 
| Modifier and Type | Method and Description | 
|---|---|
static OAuthFlow | 
valueOf(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 ACCESS_CODE
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(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–2023 Okta. All rights reserved.