Enum Class NestedRelationshipProcessingStateMachine.ProcessState
java.lang.Object
java.lang.Enum<NestedRelationshipProcessingStateMachine.ProcessState>
org.springframework.data.neo4j.core.mapping.NestedRelationshipProcessingStateMachine.ProcessState
- All Implemented Interfaces:
Serializable, Comparable<NestedRelationshipProcessingStateMachine.ProcessState>, Constable
- Enclosing class:
NestedRelationshipProcessingStateMachine
public static enum NestedRelationshipProcessingStateMachine.ProcessState
extends Enum<NestedRelationshipProcessingStateMachine.ProcessState>
Valid processing states.
- Author:
- Michael J. Simons
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionProcessed all relationships.Processed all values.Both sides of a relationship have been processed.Neither end of relationships has been processed. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PROCESSED_NONE
Neither end of relationships has been processed. -
PROCESSED_BOTH
Both sides of a relationship have been processed. -
PROCESSED_ALL_RELATIONSHIPS
public static final NestedRelationshipProcessingStateMachine.ProcessState PROCESSED_ALL_RELATIONSHIPSProcessed all relationships. -
PROCESSED_ALL_VALUES
Processed all values.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-