java.io.Serializable
, java.lang.Comparable<SenderState>
public enum SenderState extends java.lang.Enum<SenderState>
Enum Constant | Description |
---|---|
INVALID_SUBSCRIPTION |
ungültige Anmeldung (z.B. mehrere Quellen oder Senken)
|
MULTIPLE_REMOTE_LOCK |
es gibt mehrere mögliche Zentraldatenverteiler, Anmeldung daher deaktiviert
|
NO_RECEIVERS |
Keine Empfänger verfügbar
|
NO_REMOTE_SOURCE |
ungültiger Status einer entfernten Anmeldung, z.B. keine Rechte am entfernten Dav oder nicht verantwortlich
|
NOT_ALLOWED |
Keine Rechte zum Senden
|
RECEIVERS_AVAILABLE |
Empfänger sind Verfügbar, bereit zum Senden
|
UNKNOWN |
Unbekannt, Sender wurde gerade erst angemeldet
|
WAITING |
Es ist unbekannt, ob Empfänger verfügbar sind
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
isValidSender() |
Gibt zurück, ob der Sender gültig ist
|
static SenderState |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SenderState[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SenderState UNKNOWN
public static final SenderState RECEIVERS_AVAILABLE
public static final SenderState NO_RECEIVERS
public static final SenderState WAITING
public static final SenderState NOT_ALLOWED
public static final SenderState INVALID_SUBSCRIPTION
public static final SenderState NO_REMOTE_SOURCE
public static final SenderState MULTIPLE_REMOTE_LOCK
public static SenderState[] values()
for (SenderState c : SenderState.values()) System.out.println(c);
public static SenderState 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 isValidSender()