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