public static enum TransformationStack.TransformationStackEvent extends java.lang.Enum<TransformationStack.TransformationStackEvent>
| Enum Constant and Description |
|---|
CLEARED
When the stack have been cleared.
|
POPPED
When a matrix have been popped.
|
PUSHED
When a matrix have been pushed.
|
| Modifier and Type | Method and Description |
|---|---|
static TransformationStack.TransformationStackEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransformationStack.TransformationStackEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformationStack.TransformationStackEvent POPPED
public static final TransformationStack.TransformationStackEvent PUSHED
public static final TransformationStack.TransformationStackEvent CLEARED
public static TransformationStack.TransformationStackEvent[] values()
for (TransformationStack.TransformationStackEvent c : TransformationStack.TransformationStackEvent.values()) System.out.println(c);
public static TransformationStack.TransformationStackEvent 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