public enum TransmitterSubscriptionType extends Enum<TransmitterSubscriptionType>
Enum Constant and Description |
---|
Receiver
Anmeldung als Empfänger bei einem remote-Zentraldatenverteiler, welcher die Funktion einer Quelle übernimmt.
|
Sender
Anmeldung als Sender bei einem remote-Zentraldatenverteiler, welcher die Funktion einer Senke übernimmt.
|
Modifier and Type | Method and Description |
---|---|
static TransmitterSubscriptionType |
fromByte(byte b) |
byte |
toByte() |
static TransmitterSubscriptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransmitterSubscriptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransmitterSubscriptionType Sender
public static final TransmitterSubscriptionType Receiver
public static TransmitterSubscriptionType[] values()
for (TransmitterSubscriptionType c : TransmitterSubscriptionType.values()) System.out.println(c);
public static TransmitterSubscriptionType 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 nullpublic byte toByte()
public static TransmitterSubscriptionType fromByte(byte b)