public static enum VncDisplay.Share extends Enum<VncDisplay.Share>
Enum Constant and Description |
---|
ALLOW_EXCLUSIVE |
FORCE_SHARED |
IGNORE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static VncDisplay.Share |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VncDisplay.Share[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VncDisplay.Share ALLOW_EXCLUSIVE
public static final VncDisplay.Share FORCE_SHARED
public static final VncDisplay.Share IGNORE
public static VncDisplay.Share[] values()
for (VncDisplay.Share c : VncDisplay.Share.values()) System.out.println(c);
public static VncDisplay.Share 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 nullpublic String toString()
toString
in class Enum<VncDisplay.Share>