public enum GuestSessionWaitForFlag extends java.lang.Enum<GuestSessionWaitForFlag>
{BB7A372A-F635-4E11-A81A-E707F3A52EF5}
Enum Constant and Description |
---|
None
No waiting flags specified.
|
Start
Wait for the guest session being started.
|
Status
Wait for the next guest session status change.
|
Terminate
Wait for the guest session being terminated.
|
Modifier and Type | Method and Description |
---|---|
static GuestSessionWaitForFlag |
fromValue(long v) |
static GuestSessionWaitForFlag |
fromValue(java.lang.String v) |
int |
value() |
static GuestSessionWaitForFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GuestSessionWaitForFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GuestSessionWaitForFlag None
public static final GuestSessionWaitForFlag Start
public static final GuestSessionWaitForFlag Terminate
public static final GuestSessionWaitForFlag Status
public static GuestSessionWaitForFlag[] values()
for (GuestSessionWaitForFlag c : GuestSessionWaitForFlag.values()) System.out.println(c);
public static GuestSessionWaitForFlag 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 GuestSessionWaitForFlag fromValue(long v)
public static GuestSessionWaitForFlag fromValue(java.lang.String v)