public enum OAuth2FlowType extends Enum<OAuth2FlowType>
Enum Constant and Description |
---|
AUTH_CODE |
AUTH_JWT
RFC7523
|
CLIENT |
PASSWORD |
Modifier and Type | Method and Description |
---|---|
static OAuth2FlowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuth2FlowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuth2FlowType AUTH_CODE
public static final OAuth2FlowType CLIENT
public static final OAuth2FlowType PASSWORD
public static final OAuth2FlowType AUTH_JWT
public static OAuth2FlowType[] values()
for (OAuth2FlowType c : OAuth2FlowType.values()) System.out.println(c);
public static OAuth2FlowType 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 © 2023 Eclipse. All rights reserved.