Package org.neo4j.configuration
Enum GraphDatabaseSettings.CypherReplanAlgorithm
- java.lang.Object
-
- java.lang.Enum<GraphDatabaseSettings.CypherReplanAlgorithm>
-
- org.neo4j.configuration.GraphDatabaseSettings.CypherReplanAlgorithm
-
- All Implemented Interfaces:
Serializable
,Comparable<GraphDatabaseSettings.CypherReplanAlgorithm>
- Enclosing class:
- GraphDatabaseSettings
public static enum GraphDatabaseSettings.CypherReplanAlgorithm extends Enum<GraphDatabaseSettings.CypherReplanAlgorithm>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULT
EXPONENTIAL
INVERSE
NONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GraphDatabaseSettings.CypherReplanAlgorithm
valueOf(String name)
Returns the enum constant of this type with the specified name.static GraphDatabaseSettings.CypherReplanAlgorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final GraphDatabaseSettings.CypherReplanAlgorithm DEFAULT
-
NONE
public static final GraphDatabaseSettings.CypherReplanAlgorithm NONE
-
INVERSE
public static final GraphDatabaseSettings.CypherReplanAlgorithm INVERSE
-
EXPONENTIAL
public static final GraphDatabaseSettings.CypherReplanAlgorithm EXPONENTIAL
-
-
Method Detail
-
values
public static GraphDatabaseSettings.CypherReplanAlgorithm[] 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.CypherReplanAlgorithm c : GraphDatabaseSettings.CypherReplanAlgorithm.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.CypherReplanAlgorithm 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
-
-