Package org.opends.server.backends
Enum Class RebuildConfig.RebuildMode
- All Implemented Interfaces:
Serializable
,Comparable<RebuildConfig.RebuildMode>
,java.lang.constant.Constable
- Enclosing class:
- RebuildConfig
Identifies how indexes will be selected for rebuild.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionRebuild all indexes, including system indexes.Rebuild all degraded indexes, including system indexes.Rebuild used defined list of indexes. -
Method Summary
Modifier and TypeMethodDescriptionstatic RebuildConfig.RebuildMode
Returns the enum constant of this class with the specified name.static RebuildConfig.RebuildMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
Rebuild all indexes, including system indexes. -
DEGRADED
Rebuild all degraded indexes, including system indexes. -
USER_DEFINED
Rebuild used defined list of indexes.
-
-
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
-