public static enum MathArrays.Position extends java.lang.Enum<MathArrays.Position>
| Enum Constant and Description |
|---|
HEAD
Designates the beginning of the array (near index 0).
|
TAIL
Designates the end of the array.
|
| Modifier and Type | Method and Description |
|---|---|
static MathArrays.Position |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MathArrays.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MathArrays.Position HEAD
public static final MathArrays.Position TAIL
public static MathArrays.Position[] values()
for (MathArrays.Position c : MathArrays.Position.values()) System.out.println(c);
public static MathArrays.Position 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 nullCopyright (c) 2003-2015 Apache Software Foundation