public enum ReceiverState extends java.lang.Enum<ReceiverState>
Status einer Senek oder eines Empfängers
Enum Constant and Description |
---|
INVALID_SUBSCRIPTION
Ungültige Anmeldung (z.B. mehrere Senken)
|
MULTIPLE_REMOTE_LOCK
es gibt mehrere mögliche Zentraldatenverteiler, Anmeldung daher deaktiviert
|
NO_REMOTE_DRAIN
ungültiger Status einer entfernten Anmeldung, z.B. keine Rechte am entfernten Dav oder nicht verantwortlich
|
NO_SENDERS
Es gibt keine Quellen/Sender
|
NOT_ALLOWED
Es fehlen Rechte
|
SENDERS_AVAILABLE
Es gibt Quellen/Sender
|
UNKNOWN
Unbekannt, Empfänger wurde gerade erst angemeldet
|
WAITING
Es ist unbekannt, ob Sender verfügbar sind
|
Modifier and Type | Method and Description |
---|---|
boolean |
isValidReceiver() |
static ReceiverState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReceiverState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReceiverState UNKNOWN
public static final ReceiverState NO_SENDERS
public static final ReceiverState SENDERS_AVAILABLE
public static final ReceiverState WAITING
public static final ReceiverState NOT_ALLOWED
public static final ReceiverState INVALID_SUBSCRIPTION
public static final ReceiverState NO_REMOTE_DRAIN
public static final ReceiverState MULTIPLE_REMOTE_LOCK
public static ReceiverState[] values()
for (ReceiverState c : ReceiverState.values()) System.out.println(c);
public static ReceiverState 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 boolean isValidReceiver()