public static enum Array.ArrayType extends java.lang.Enum<Array.ArrayType>
Enum Constant and Description |
---|
INT |
INT_SPARSE |
NUM |
REAL |
REAL_SPARSE |
STRING |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Array.ArrayType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Array.ArrayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Array.ArrayType NUM
public static final Array.ArrayType INT
public static final Array.ArrayType REAL
public static final Array.ArrayType STRING
public static final Array.ArrayType REAL_SPARSE
public static final Array.ArrayType INT_SPARSE
public static Array.ArrayType[] values()
for (Array.ArrayType c : Array.ArrayType.values()) System.out.println(c);
public static Array.ArrayType 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 java.lang.String toString()
toString
in class java.lang.Enum<Array.ArrayType>