Package org.elasticsearch.indices
Enum IndicesService.ShardDeletionCheckResult
- java.lang.Object
-
- java.lang.Enum<IndicesService.ShardDeletionCheckResult>
-
- org.elasticsearch.indices.IndicesService.ShardDeletionCheckResult
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IndicesService.ShardDeletionCheckResult>
,java.lang.constant.Constable
- Enclosing class:
- IndicesService
public static enum IndicesService.ShardDeletionCheckResult extends java.lang.Enum<IndicesService.ShardDeletionCheckResult>
result type returned bysignaling different reasons why a shard can / cannot be deleted
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FOLDER_FOUND_CAN_DELETE
NO_FOLDER_FOUND
NO_LOCAL_STORAGE
STILL_ALLOCATED
-
Method Summary
Modifier and Type Method Description static IndicesService.ShardDeletionCheckResult
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IndicesService.ShardDeletionCheckResult[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FOLDER_FOUND_CAN_DELETE
public static final IndicesService.ShardDeletionCheckResult FOLDER_FOUND_CAN_DELETE
-
STILL_ALLOCATED
public static final IndicesService.ShardDeletionCheckResult STILL_ALLOCATED
-
NO_FOLDER_FOUND
public static final IndicesService.ShardDeletionCheckResult NO_FOLDER_FOUND
-
NO_LOCAL_STORAGE
public static final IndicesService.ShardDeletionCheckResult NO_LOCAL_STORAGE
-
-
Method Detail
-
values
public static IndicesService.ShardDeletionCheckResult[] 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
public static IndicesService.ShardDeletionCheckResult valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-