public enum DataStructureType extends java.lang.Enum<DataStructureType>
Enum Constant and Description |
---|
DATASET
Dataset structure - a set of data elements
|
GRAPH
A Graph of data elements consisting of nodes and edges
|
GRID
A multi-dimensional grid of data elements
|
TREE
A tree hierarchy of data elements
|
Modifier and Type | Method and Description |
---|---|
static DataStructureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataStructureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataStructureType DATASET
public static final DataStructureType GRAPH
public static final DataStructureType GRID
public static final DataStructureType TREE
public static DataStructureType[] values()
for (DataStructureType c : DataStructureType.values()) System.out.println(c);
public static DataStructureType 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 null