public enum SenderState extends Enum<SenderState>
| Enum Constant and Description |
|---|
INVALID_SUBSCRIPTION
ungültige Anmeldung (z.B.
|
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.
|
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 | Field and Description |
|---|---|
private boolean |
_validSender |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isValidSender()
Gibt zurück, ob der Sender gültig ist
|
static SenderState |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isValidSender()