public enum RemovedReason extends java.lang.Enum<RemovedReason>
| Enum Constant and Description |
|---|
ButtonIsPrivate |
CouldntLoadDevice |
ForceDisconnectedByOtherClient |
ForceDisconnectedByThisClient |
InternetBackendError |
InvalidData |
RemovedByThisClient |
VerifyTimeout |
| Modifier and Type | Method and Description |
|---|---|
static RemovedReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RemovedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemovedReason RemovedByThisClient
public static final RemovedReason ForceDisconnectedByThisClient
public static final RemovedReason ForceDisconnectedByOtherClient
public static final RemovedReason ButtonIsPrivate
public static final RemovedReason VerifyTimeout
public static final RemovedReason InternetBackendError
public static final RemovedReason InvalidData
public static final RemovedReason CouldntLoadDevice
public static RemovedReason[] values()
for (RemovedReason c : RemovedReason.values()) System.out.println(c);
public static RemovedReason 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