public enum EReleaseType extends java.lang.Enum<EReleaseType>
This is the enumeration of the release types. There exists currently three releases: ALPHA, BETA and PRODUCTION.
Enum Constant and Description |
---|
ALPHA |
BETA |
PRODUCTION |
Modifier and Type | Method and Description |
---|---|
static EReleaseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EReleaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EReleaseType ALPHA
public static final EReleaseType BETA
public static final EReleaseType PRODUCTION
public static EReleaseType[] values()
for (EReleaseType c : EReleaseType.values()) System.out.println(c);
public static EReleaseType 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 null14-September-2016 18:23 Deutsches Elektronen-Synchrotron DESY in der Helmholtz-Gemeinschaft