public static enum StructuredDrag.DropResult extends Enum<StructuredDrag.DropResult>
Modifier and Type | Method and Description |
---|---|
static StructuredDrag.DropResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredDrag.DropResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredDrag.DropResult NO_DROP
public static final StructuredDrag.DropResult COPIED
public static final StructuredDrag.DropResult MOVED
public static StructuredDrag.DropResult[] values()
for (StructuredDrag.DropResult c : StructuredDrag.DropResult.values()) System.out.println(c);
public static StructuredDrag.DropResult 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