public static enum JGraspDialog.Location extends Enum<JGraspDialog.Location>
Enum Constant and Description |
---|
CENTER
Indicates that the position should be centered.
|
RIGHT
Indicates that the position should be to the right.
|
Modifier and Type | Method and Description |
---|---|
static JGraspDialog.Location |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JGraspDialog.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JGraspDialog.Location CENTER
public static final JGraspDialog.Location RIGHT
public static JGraspDialog.Location[] values()
for (JGraspDialog.Location c : JGraspDialog.Location.values()) System.out.println(c);
public static JGraspDialog.Location 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