public enum AuthenticationScene extends java.lang.Enum<AuthenticationScene>
Modifier and Type | Method and Description |
---|---|
static AuthenticationScene |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationScene[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="FROM_MINI_APP") public static final AuthenticationScene MINI_APP
@SerializedName(value="FROM_HARDWARE") public static final AuthenticationScene HARDWARE
public static AuthenticationScene[] values()
for (AuthenticationScene c : AuthenticationScene.values()) System.out.println(c);
public static AuthenticationScene 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 null