public static enum VertexIndex.Type extends java.lang.Enum<VertexIndex.Type>
| Enum Constant and Description |
|---|
Materialized
The index is build using materialized views.
|
Search
This index uses Solr indexing.
|
Secondary
This index is build using secondary indexes.
|
| Modifier and Type | Method and Description |
|---|---|
static VertexIndex.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VertexIndex.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertexIndex.Type Materialized
public static final VertexIndex.Type Secondary
Materialized
but can index properties with lower selectivity.public static final VertexIndex.Type Search
public static VertexIndex.Type[] values()
for (VertexIndex.Type c : VertexIndex.Type.values()) System.out.println(c);
public static VertexIndex.Type 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