public enum ReferenceMode extends java.lang.Enum<ReferenceMode>
ReferenceMode
defines how mapping information is stored and referenced by.Enum Constant and Description |
---|
DIRECT
Data is directly referenced
|
INDEX
Data is referenced by index
|
INDEX_TO_DIRECT
Data is referenced by index, then accessed by index in
VertexElement 's data list. |
Modifier and Type | Method and Description |
---|---|
static ReferenceMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReferenceMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReferenceMode DIRECT
public static final ReferenceMode INDEX
public static final ReferenceMode INDEX_TO_DIRECT
VertexElement
's data list.public static ReferenceMode[] values()
for (ReferenceMode c : ReferenceMode.values()) System.out.println(c);
public static ReferenceMode 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