toxi.geom
Enum Vec2D.Axis
java.lang.Object
java.lang.Enum<Vec2D.Axis>
toxi.geom.Vec2D.Axis
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Vec2D.Axis>
- Enclosing class:
- Vec2D
public static enum Vec2D.Axis
- extends java.lang.Enum<Vec2D.Axis>
Enum Constant Summary |
X
|
Y
|
Method Summary |
ReadonlyVec2D |
getVector()
|
static Vec2D.Axis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Vec2D.Axis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
X
public static final Vec2D.Axis X
Y
public static final Vec2D.Axis Y
values
public static Vec2D.Axis[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Vec2D.Axis c : Vec2D.Axis.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Vec2D.Axis valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getVector
public ReadonlyVec2D getVector()