public enum ArrayScheme extends java.lang.Enum<ArrayScheme>
Enum Constant and Description |
---|
ATOMIC |
RECORD |
SEQARRAY |
SEQUENCE |
STRUCTARRAY |
STRUCTURE |
Modifier and Type | Method and Description |
---|---|
static ArrayScheme |
schemeFor(DapVariable field) |
static ArrayScheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrayScheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayScheme ATOMIC
public static final ArrayScheme STRUCTARRAY
public static final ArrayScheme STRUCTURE
public static final ArrayScheme SEQARRAY
public static final ArrayScheme SEQUENCE
public static final ArrayScheme RECORD
public static ArrayScheme[] values()
for (ArrayScheme c : ArrayScheme.values()) System.out.println(c);
public static ArrayScheme 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 static ArrayScheme schemeFor(DapVariable field)