public enum AnmeldeTyp extends java.lang.Enum<AnmeldeTyp>
Enum Constant and Description |
---|
EMPFAENGER
Anmeldung als Empfänger.
|
QUELLE
Anmeldung als Quelle.
|
SENDER
Anmeldung als Sender.
|
SENKE
Anmeldung als Senke.
|
Modifier and Type | Method and Description |
---|---|
static AnmeldeTyp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnmeldeTyp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnmeldeTyp SENDER
public static final AnmeldeTyp QUELLE
public static final AnmeldeTyp EMPFAENGER
public static final AnmeldeTyp SENKE
public static AnmeldeTyp[] values()
for (AnmeldeTyp c : AnmeldeTyp.values()) System.out.println(c);
public static AnmeldeTyp 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