|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Transform2D.Type> Transform2D.Type
public static enum Transform2D.Type
ZERO can be used to construct a Transform2D object defining the zero matrix. IDENTITY can be used to construct a Transform2D object defining the identity matrix. REFX can be used to construct a Transform2D object defining a reflection in the x axis. REFY can be used to construct a Transform2D object defining a reflaction in the y axis. REFORIGIN can be used to construct a Transform2D object defining a reflection in the origin.
Enum Constant Summary | |
---|---|
IDENTITY
IDENTITY can be used to construct a Transform2D object defining the identity matrix. |
|
REFORIGIN
REFORIGIN can be used to construct a Transform2D object defining a reflection in the origin. |
|
REFX
REFX can be used to construct a Transform2D object defining a reflection in the x axis. |
|
REFY
REFY can be used to construct a Transform2D object defining a reflection in the y axis. |
|
ZERO
ZERO can be used to construct a Transform2D object defining the zero matrix. |
Method Summary | |
---|---|
static Transform2D.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Transform2D.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Transform2D.Type ZERO
public static final Transform2D.Type IDENTITY
public static final Transform2D.Type REFX
public static final Transform2D.Type REFY
public static final Transform2D.Type REFORIGIN
Method Detail |
---|
public static final Transform2D.Type[] values()
for(Transform2D.Type c : Transform2D.Type.values()) System.out.println(c);
public static Transform2D.Type 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 name
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |