public enum ReleaseType extends java.lang.Enum<ReleaseType>
| Modifier and Type | Field and Description |
|---|---|
static java.util.Map<java.lang.String,ReleaseType> |
CONSTANTS |
| Modifier and Type | Method and Description |
|---|---|
static ReleaseType |
fromValue(java.lang.String value) |
java.lang.String |
toString() |
java.lang.String |
value() |
static ReleaseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReleaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="alpha") public static final ReleaseType ALPHA
@SerializedName(value="beta") public static final ReleaseType BETA
@SerializedName(value="release") public static final ReleaseType RELEASE
public static final java.util.Map<java.lang.String,ReleaseType> CONSTANTS
public static ReleaseType[] values()
for (ReleaseType c : ReleaseType.values()) System.out.println(c);
public static ReleaseType 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<ReleaseType>public java.lang.String value()
public static ReleaseType fromValue(java.lang.String value)