public static enum Meldung.Zustaende extends java.lang.Enum<Meldung.Zustaende>
Enum Constant and Description |
---|
erledigt |
inBearbeitung |
keineÄnderung |
neu |
Wiedervorlage |
Modifier and Type | Method and Description |
---|---|
static Meldung.Zustaende |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Meldung.Zustaende[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Meldung.Zustaende neu
public static final Meldung.Zustaende inBearbeitung
public static final Meldung.Zustaende Wiedervorlage
public static final Meldung.Zustaende erledigt
public static final Meldung.Zustaende keineÄnderung
public static Meldung.Zustaende[] values()
for (Meldung.Zustaende c : Meldung.Zustaende.values()) System.out.println(c);
public static Meldung.Zustaende 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 null