java.io.Serializable
, java.lang.Comparable<SubscriptionState>
public enum SubscriptionState extends java.lang.Enum<SubscriptionState>
Enum Constant | Description |
---|---|
InvalidSubscription |
Die Anmeldung ist ungültig (z.B. bei mehreren Quellen/Senken).
|
MultiRemoteLock |
Bei ausgehenden Anmeldungen zu anderen Zentraldatenverteilern: Mehrere verbundene Datenverteiler haben signalisiert,
dass sie der Zentraldatenverteiler sind.
|
NoReceiversAvailable |
Die Anmeldung als Sender/Quelle ist erfolgreich, aber es sind keine Empfänger/Senke vorhanden.
|
NoSendersAvailable |
Die Anmeldung als Empfänger/Senke ist erfolgreich, aber es sind keine Quelle/Sender vorhanden.
|
NotAllowed |
Die Anmeldung ist wegen fehlenden Rechten nicht erlaubt.
|
NotResponsible |
Bei ausgehenden Anmeldungen zu anderen Zentraldatenverteilern: Die angefragten Datenverteiler sind nicht zuständig für die Daten.
|
ReceiversAvailable |
Anmeldung als Sender/Quelle ist erfolgreich, Empfänger/Senke sind vorhanden.
|
SendersAvailable |
Anmeldung als Empfänger/Senke ist erfolgreich, Quelle/Sender sind vorhanden.
|
Waiting |
Bei ausgehenden Anmeldungen zu anderen Zentraldatenverteilern:
Die Anmeldung wartet auf Rückmeldung von anderen Datenverteilern.
|
Modifier and Type | Method | Description |
---|---|---|
static SubscriptionState |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SubscriptionState[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionState NoReceiversAvailable
public static final SubscriptionState NotAllowed
public static final SubscriptionState InvalidSubscription
public static final SubscriptionState NoSendersAvailable
public static final SubscriptionState SendersAvailable
public static final SubscriptionState ReceiversAvailable
public static final SubscriptionState Waiting
public static final SubscriptionState NotResponsible
public static final SubscriptionState MultiRemoteLock
public static SubscriptionState[] values()
for (SubscriptionState c : SubscriptionState.values()) System.out.println(c);
public static SubscriptionState 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