public static enum Enumerations.Matrix extends Enum<Enumerations.Matrix>
| Enum Constant and Description |
|---|
MATRIX |
NONE |
ROTATE |
SCALE |
SKEW_X |
SKEW_Y |
TRANSLATE |
| Modifier and Type | Method and Description |
|---|---|
String |
getName()
Returns the
name. |
static Enumerations.Matrix |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Enumerations.Matrix[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enumerations.Matrix NONE
public static final Enumerations.Matrix MATRIX
public static final Enumerations.Matrix TRANSLATE
public static final Enumerations.Matrix SCALE
public static final Enumerations.Matrix ROTATE
public static final Enumerations.Matrix SKEW_X
public static final Enumerations.Matrix SKEW_Y
public static Enumerations.Matrix[] values()
for (Enumerations.Matrix c : Enumerations.Matrix.values()) System.out.println(c);
public static Enumerations.Matrix 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 nullCopyright © 2016 Saxonia Systems AG. All rights reserved.