public static enum StructuredDrop.DropMethod extends Enum<StructuredDrop.DropMethod>
Enum Constant and Description |
---|
dragEnter |
dragLeave |
dragOperationChanged |
dragOver |
drop |
dropAccept |
Modifier and Type | Method and Description |
---|---|
static StructuredDrop.DropMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredDrop.DropMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredDrop.DropMethod dragEnter
public static final StructuredDrop.DropMethod dragLeave
public static final StructuredDrop.DropMethod dragOperationChanged
public static final StructuredDrop.DropMethod dragOver
public static final StructuredDrop.DropMethod drop
public static final StructuredDrop.DropMethod dropAccept
public static StructuredDrop.DropMethod[] values()
for (StructuredDrop.DropMethod c : StructuredDrop.DropMethod.values()) System.out.println(c);
public static StructuredDrop.DropMethod 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 null