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