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