public enum SleepModeStatus extends Enum<SleepModeStatus>
Constants for SleepModeStatus tag.
Specification: retail.
Enum Constant and Description |
---|
ENTERING_SLEEP
Terminal enters sleep mode.
|
WAKING_UP
Terminal wakes up from sleep mode.
|
Modifier and Type | Method and Description |
---|---|
static SleepModeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SleepModeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SleepModeStatus ENTERING_SLEEP
Terminal enters sleep mode.
Specification: retail.
public static final SleepModeStatus WAKING_UP
Terminal wakes up from sleep mode.
Specification: retail.
public static SleepModeStatus[] values()
for (SleepModeStatus c : SleepModeStatus.values()) System.out.println(c);
public static SleepModeStatus 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