public static enum GeometryTransformer.UndoState extends java.lang.Enum<GeometryTransformer.UndoState>
Enum Constant and Description |
---|
OFF
No undo information is being saved or restored.
|
RESTORING
Undo information is being restored.
|
SAVING
Undo information is being saved.
|
Modifier and Type | Method and Description |
---|---|
static GeometryTransformer.UndoState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeometryTransformer.UndoState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeometryTransformer.UndoState OFF
public static final GeometryTransformer.UndoState SAVING
public static final GeometryTransformer.UndoState RESTORING
public static GeometryTransformer.UndoState[] values()
for (GeometryTransformer.UndoState c : GeometryTransformer.UndoState.values()) System.out.println(c);
public static GeometryTransformer.UndoState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null