Enum Class Phase.Transition
- All Implemented Interfaces:
Serializable,Comparable<Phase.Transition>,java.lang.constant.Constable
- Enclosing class:
Phase
The possible transitions between phases.
There are four possible transitions:
SameTrigger: The next phase is triggered by the same trigger as the current phase.NextTrigger: The next phase is triggered by the next trigger in the sequence.StoreRestart: The next phase requires a restart of the DB store.RepositoryRestart: The next phase requires a restart of the repository.
- Since:
- 4.14
- Author:
- Eike Stepper
- No Implement
- This package is currently considered provisional.
- No Extend
- This package is currently considered provisional.
- No Reference
- This package is currently considered provisional.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe next phase is triggered by the next trigger in the sequence.The next phase requires a restart of the repository.The next phase is triggered by the same trigger as the current phase.The next phase requires a restart of the DB store. -
Method Summary
Modifier and TypeMethodDescriptionstatic Phase.TransitionReturns the enum constant of this class with the specified name.static Phase.Transition[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SameTrigger
The next phase is triggered by the same trigger as the current phase. -
NextTrigger
The next phase is triggered by the next trigger in the sequence. -
StoreRestart
The next phase requires a restart of the DB store. -
RepositoryRestart
The next phase requires a restart of the repository.
-
-
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
-