public enum GuestMonitorStatus extends java.lang.Enum<GuestMonitorStatus>
Enum Constant and Description |
---|
Blank
The guest monitor is enabled in the guest but should display nothing.
|
Disabled
The guest monitor is disabled in the guest.
|
Enabled
The guest monitor is enabled in the guest.
|
Modifier and Type | Method and Description |
---|---|
static GuestMonitorStatus |
fromValue(long v) |
static GuestMonitorStatus |
fromValue(java.lang.String v) |
int |
value() |
static GuestMonitorStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GuestMonitorStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GuestMonitorStatus Disabled
public static final GuestMonitorStatus Enabled
public static final GuestMonitorStatus Blank
public static GuestMonitorStatus[] values()
for (GuestMonitorStatus c : GuestMonitorStatus.values()) System.out.println(c);
public static GuestMonitorStatus 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 int value()
public static GuestMonitorStatus fromValue(long v)
public static GuestMonitorStatus fromValue(java.lang.String v)