public static enum RemoteRelocator.Reaction extends Enum<RemoteRelocator.Reaction>
RemoteRelocator has
finished the drag & drop operation or not.| Enum Constant and Description |
|---|
BREAK
The operation is finished, and the event was not consumed
|
BREAK_CONSUMED
The operation is finished, but the event was consumed
|
CONTINUE
The operation is going on, but the event was not consumed
|
CONTINUE_CONSUMED
The operation is going on, and the event was consumed
|
| Modifier and Type | Method and Description |
|---|---|
static RemoteRelocator.Reaction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteRelocator.Reaction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteRelocator.Reaction CONTINUE
public static final RemoteRelocator.Reaction CONTINUE_CONSUMED
public static final RemoteRelocator.Reaction BREAK
public static final RemoteRelocator.Reaction BREAK_CONSUMED
public static RemoteRelocator.Reaction[] values()
for (RemoteRelocator.Reaction c : RemoteRelocator.Reaction.values()) System.out.println(c);
public static RemoteRelocator.Reaction 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 nullCopyright © 2017 Docking Frames. All rights reserved.