public enum ElementOrder extends java.lang.Enum<ElementOrder>
Enum Constant and Description |
---|
GRAPH
Represents graphs.
|
TABLE
Represents tables.
|
VALUES
Represents text - value pair box.
|
Modifier and Type | Method and Description |
---|---|
static ElementOrder[] |
deserialize(java.lang.String serializedOrder) |
static java.lang.String |
serialize(ElementOrder[] order) |
static ElementOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElementOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementOrder VALUES
public static final ElementOrder GRAPH
public static final ElementOrder TABLE
public static ElementOrder[] values()
for (ElementOrder c : ElementOrder.values()) System.out.println(c);
public static ElementOrder 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 java.lang.String serialize(ElementOrder[] order)
public static ElementOrder[] deserialize(java.lang.String serializedOrder)