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