Enum Class Journal.JournalState
- All Implemented Interfaces:
Serializable, Comparable<Journal.JournalState>, Constable
- Enclosing interface:
Journal
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe journal is fully operational.The journal has some fields initialized and services running.When a replicating server is still not synchronized with its replica.Journal is being used by a replicating server which is up-to-date with its replica. -
Method Summary
Modifier and TypeMethodDescriptionstatic Journal.JournalStateReturns the enum constant of this class with the specified name.static Journal.JournalState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STOPPED
-
STARTED
The journal has some fields initialized and services running. But it is not fully operational. SeeLOADED. -
SYNCING
When a replicating server is still not synchronized with its replica. So if the replicating server stops, the replica may not fail-over and will stop as well. -
SYNCING_UP_TO_DATE
Journal is being used by a replicating server which is up-to-date with its replica. That means that if the replicating server stops, the replica can fail-over. -
LOADED
The journal is fully operational. This is the state the journal should be when its server is active.
-
-
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
-