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