@Deprecated public static enum GraphDatabaseSettings.LabelIndex extends Enum<GraphDatabaseSettings.LabelIndex>
Enum Constant and Description |
---|
AUTO
Deprecated.
Selects which ever label index is present in a store, or the default (NATIVE) if no label index present.
|
LUCENE
Deprecated.
Label index backed by Lucene.
|
NATIVE
Deprecated.
Native label index.
|
Modifier and Type | Method and Description |
---|---|
static GraphDatabaseSettings.LabelIndex |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static GraphDatabaseSettings.LabelIndex[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphDatabaseSettings.LabelIndex NATIVE
public static final GraphDatabaseSettings.LabelIndex LUCENE
public static final GraphDatabaseSettings.LabelIndex AUTO
public static GraphDatabaseSettings.LabelIndex[] values()
for (GraphDatabaseSettings.LabelIndex c : GraphDatabaseSettings.LabelIndex.values()) System.out.println(c);
public static GraphDatabaseSettings.LabelIndex valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2002–2018 The Neo4j Graph Database Project. All rights reserved.