Package org.neo4j.configuration
Enum GraphDatabaseSettings.SchemaIndex
- java.lang.Object
-
- java.lang.Enum<GraphDatabaseSettings.SchemaIndex>
-
- org.neo4j.configuration.GraphDatabaseSettings.SchemaIndex
-
- All Implemented Interfaces:
Serializable
,Comparable<GraphDatabaseSettings.SchemaIndex>
- Enclosing class:
- GraphDatabaseSettings
public static enum GraphDatabaseSettings.SchemaIndex extends Enum<GraphDatabaseSettings.SchemaIndex>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NATIVE_BTREE10
NATIVE30
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
deprecated()
String
providerKey()
String
providerName()
String
providerVersion()
String
toString()
static GraphDatabaseSettings.SchemaIndex
valueOf(String name)
Returns the enum constant of this type with the specified name.static GraphDatabaseSettings.SchemaIndex[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NATIVE_BTREE10
public static final GraphDatabaseSettings.SchemaIndex NATIVE_BTREE10
-
NATIVE30
public static final GraphDatabaseSettings.SchemaIndex NATIVE30
-
-
Method Detail
-
values
public static GraphDatabaseSettings.SchemaIndex[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GraphDatabaseSettings.SchemaIndex c : GraphDatabaseSettings.SchemaIndex.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphDatabaseSettings.SchemaIndex valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
providerName
public String providerName()
-
providerKey
public String providerKey()
-
providerVersion
public String providerVersion()
-
deprecated
public boolean deprecated()
-
toString
public String toString()
-
-