public enum EnumAuftragStatus extends Enum<EnumAuftragStatus> implements EnumText
Enum Constant and Description |
---|
abgehakt |
nicht_abarbeitbar |
nicht_abgehakt |
Modifier and Type | Method and Description |
---|---|
String |
getText() |
static EnumAuftragStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumAuftragStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAuftragStatus abgehakt
public static final EnumAuftragStatus nicht_abgehakt
public static final EnumAuftragStatus nicht_abarbeitbar
public static EnumAuftragStatus[] values()
for (EnumAuftragStatus c : EnumAuftragStatus.values()) System.out.println(c);
public static EnumAuftragStatus 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 © 2019. All rights reserved.