public enum ClipboardMode extends java.lang.Enum<ClipboardMode>
Enum Constant and Description |
---|
Bidirectional |
Disabled |
GuestToHost |
HostToGuest |
Modifier and Type | Method and Description |
---|---|
static ClipboardMode |
fromValue(long v) |
static ClipboardMode |
fromValue(java.lang.String v) |
int |
value() |
static ClipboardMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClipboardMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClipboardMode Disabled
public static final ClipboardMode HostToGuest
public static final ClipboardMode GuestToHost
public static final ClipboardMode Bidirectional
public static ClipboardMode[] values()
for (ClipboardMode c : ClipboardMode.values()) System.out.println(c);
public static ClipboardMode 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 ClipboardMode fromValue(long v)
public static ClipboardMode fromValue(java.lang.String v)