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