Enum Constant and Description |
---|
E |
UNKNOWN
0 Unbekannter oder undefinierter Betrieb
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBetriebsName() |
int |
getBetriebsNr()
never null
|
static Betrieb |
getByName(java.lang.String betriebsName)
never null, no IllegalArgumentException
|
static Betrieb |
getByNr(int betriebsNr) |
static boolean |
isInRange(int betriebsNr) |
static Betrieb |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Betrieb[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Betrieb UNKNOWN
public static final Betrieb E
public static Betrieb[] values()
for (Betrieb c : Betrieb.values()) System.out.println(c);
public static Betrieb 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 final Betrieb getByNr(int betriebsNr)
public static final boolean isInRange(int betriebsNr)
public final int getBetriebsNr()
public final java.lang.String getBetriebsName()
public static Betrieb getByName(java.lang.String betriebsName)
13-September-2017 07:50 Deutsches Elektronen-Synchrotron DESY in der Helmholtz-Gemeinschaft