public static enum Matrix.Order extends java.lang.Enum<Matrix.Order>
Enum Constant and Description |
---|
COLUMN_MAJOR |
ROW_MAJOR |
Modifier and Type | Method and Description |
---|---|
abstract Vector.Orientation |
getAssociatedOrientation() |
abstract Matrix.Order |
getOther() |
static Matrix.Order |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Matrix.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Matrix.Order ROW_MAJOR
public static final Matrix.Order COLUMN_MAJOR
public static Matrix.Order[] values()
for (Matrix.Order c : Matrix.Order.values()) System.out.println(c);
public static Matrix.Order 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 nullpublic abstract Vector.Orientation getAssociatedOrientation()
public abstract Matrix.Order getOther()