public enum RevokeDeviceSessionError extends Enum<RevokeDeviceSessionError>
| Enum Constant and Description |
|---|
DEVICE_SESSION_NOT_FOUND
Device session not found.
|
MEMBER_NOT_FOUND
Member not found.
|
OTHER
An unspecified error.
|
| Modifier and Type | Method and Description |
|---|---|
static RevokeDeviceSessionError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RevokeDeviceSessionError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RevokeDeviceSessionError DEVICE_SESSION_NOT_FOUND
public static final RevokeDeviceSessionError MEMBER_NOT_FOUND
public static final RevokeDeviceSessionError OTHER
public static RevokeDeviceSessionError[] values()
for (RevokeDeviceSessionError c : RevokeDeviceSessionError.values()) System.out.println(c);
public static RevokeDeviceSessionError 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 null