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