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