public enum OauthType extends Enum<OauthType>
| Enum Constant and Description |
|---|
INTEGRATED |
PRE_STEP |
| Modifier and Type | Method and Description |
|---|---|
static Optional<OauthType> |
getByValue(String name) |
String |
getValue() |
static OauthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OauthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OauthType PRE_STEP
public static final OauthType INTEGRATED
public static OauthType[] values()
for (OauthType c : OauthType.values()) System.out.println(c);
public static OauthType 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 nullpublic String getValue()
Copyright © 2020. All rights reserved.