public static enum ProjectVersion.VersionType extends Enum<ProjectVersion.VersionType>
| Enum Constant and Description |
|---|
ALPHA
If this version was released on the "alpha" channel
|
BETA
If this version was released on the "beta" channel
|
RELEASE
If this version was released on the "release" channel
|
| Modifier and Type | Method and Description |
|---|---|
static ProjectVersion.VersionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectVersion.VersionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="release") public static final ProjectVersion.VersionType RELEASE
@SerializedName(value="beta") public static final ProjectVersion.VersionType BETA
@SerializedName(value="alpha") public static final ProjectVersion.VersionType ALPHA
public static ProjectVersion.VersionType[] values()
for (ProjectVersion.VersionType c : ProjectVersion.VersionType.values()) System.out.println(c);
public static ProjectVersion.VersionType 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 © 2026. All rights reserved.