public enum SubscriptionState extends java.lang.Enum<SubscriptionState>
Enum Constant and Description |
---|
InvalidSubscription
Anmeldung ungültig (z.B. bei mehreren Quellen/Senken)
|
MultiRemoteLock
Mehrere Datenverteiler sind zuständig, Anmeldung gesperrt
|
NoReceiversAvailable
Anmeldung ans Sender/Quelle erfolgreich, aber keine Empfänger/Senke vorhanden
|
NoSendersAvailable
Anmeldung als Empfänger/Senke erfolgreich, aber keine Quelle/Sender vorhanden
|
NotAllowed
Anmeldung wegen fehlenden Rechten ungültig
|
NotResponsible
Entfernter Datenverteiler ist nicht zuständig für Daten
|
ReceiversAvailable
Anmeldung ans Sender/Quelle erfolgreich, Empfänger/Senke vorhanden
|
SendersAvailable
Anmeldung als Empfänger/Senke erfolgreich, Quelle/Sender vorhanden
|
Waiting
Anmeldung wartet auf Bestätigung von anderen Datenverteilern
|
Modifier and Type | Method and 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