public enum AnmeldeTyp extends 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(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(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 © 2017 BitCtrl Systems GmbH. All rights reserved.