Enum ServerCloneStatus.State
- All Implemented Interfaces:
Serializable,Comparable<ServerCloneStatus.State>
- Enclosing class:
- ServerCloneStatus
Enum determining the status of the cloning process.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSegments are loaded or being loaded.The source server is missing from the current cluster view.The target server is missing from the current cluster view. -
Method Summary
Modifier and TypeMethodDescriptionstatic ServerCloneStatus.StateReturns the enum constant of this type with the specified name.static ServerCloneStatus.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SOURCE_SERVER_MISSING
The source server is missing from the current cluster view. The clone is continuing to load segments based on the last seen state of the source cluster. -
TARGET_SERVER_MISSING
The target server is missing from the current cluster view. -
IN_PROGRESS
Segments are loaded or being loaded. The counts give a better view of the progress.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-