public enum GueteVerfahren extends java.lang.Enum<GueteVerfahren> implements Zustand<java.lang.Integer>
Enum Constant and Description |
---|
Standard
Standardverfahren.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
getCode()
Liefert den Code des Zustandes.
|
static GueteVerfahren |
getGueteVerfahren(int code)
Sucht das Güteverfahren anhand eines Code.
|
java.lang.String |
getName()
Liefert den Namen des Zustandes.
|
static GueteVerfahren |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GueteVerfahren[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GueteVerfahren Standard
public static GueteVerfahren[] values()
for (GueteVerfahren c : GueteVerfahren.values()) System.out.println(c);
public static GueteVerfahren 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 GueteVerfahren getGueteVerfahren(int code)
code
- der Code.public java.lang.Integer getCode()
Zustand