java.io.Serializable, java.lang.Comparable<TransmitterSubscriptionType>public enum TransmitterSubscriptionType extends java.lang.Enum<TransmitterSubscriptionType>
| Enum Constant | 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 | Description |
|---|---|---|
static TransmitterSubscriptionType |
fromByte(byte b) |
|
byte |
toByte() |
|
static TransmitterSubscriptionType |
valueOf(java.lang.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(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 nullpublic byte toByte()
public static TransmitterSubscriptionType fromByte(byte b)