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