public enum DragStatus extends Enum<DragStatus>
Enum Constant and Description |
---|
CANCELED |
CHANGEDPOINT |
MOVE |
MOVEPOINT |
NODRAG |
SELECT |
Modifier and Type | Method and Description |
---|---|
static DragStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DragStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DragStatus CANCELED
public static final DragStatus NODRAG
public static final DragStatus SELECT
public static final DragStatus MOVE
public static final DragStatus MOVEPOINT
public static final DragStatus CHANGEDPOINT
public static DragStatus[] values()
for (DragStatus c : DragStatus.values()) System.out.println(c);
public static DragStatus 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 © 2005–2020. All rights reserved.