public enum BuildSystemVersion extends java.lang.Enum<BuildSystemVersion>
| Modifier and Type | Method and Description |
|---|---|
static BuildSystemVersion |
forName(java.lang.String versionName) |
static BuildSystemVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BuildSystemVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildSystemVersion v1_0
public static final BuildSystemVersion v2_0
public static final BuildSystemVersion UNKNOWN
public static BuildSystemVersion[] values()
for (BuildSystemVersion c : BuildSystemVersion.values()) System.out.println(c);
public static BuildSystemVersion 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 static BuildSystemVersion forName(java.lang.String versionName)