Enum CreatedRestoreSlice.ConsistencyLevelCheckResult
- java.lang.Object
-
- java.lang.Enum<CreatedRestoreSlice.ConsistencyLevelCheckResult>
-
- org.apache.cassandra.spark.bulkwriter.cloudstorage.CreatedRestoreSlice.ConsistencyLevelCheckResult
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CreatedRestoreSlice.ConsistencyLevelCheckResult>
- Enclosing class:
- CreatedRestoreSlice
public static enum CreatedRestoreSlice.ConsistencyLevelCheckResult extends java.lang.Enum<CreatedRestoreSlice.ConsistencyLevelCheckResult>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALREADY_SATISFIEDNOT_SATISFIEDSATISFIED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CreatedRestoreSlice.ConsistencyLevelCheckResultvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CreatedRestoreSlice.ConsistencyLevelCheckResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_SATISFIED
public static final CreatedRestoreSlice.ConsistencyLevelCheckResult NOT_SATISFIED
-
SATISFIED
public static final CreatedRestoreSlice.ConsistencyLevelCheckResult SATISFIED
-
ALREADY_SATISFIED
public static final CreatedRestoreSlice.ConsistencyLevelCheckResult ALREADY_SATISFIED
-
-
Method Detail
-
values
public static CreatedRestoreSlice.ConsistencyLevelCheckResult[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CreatedRestoreSlice.ConsistencyLevelCheckResult c : CreatedRestoreSlice.ConsistencyLevelCheckResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreatedRestoreSlice.ConsistencyLevelCheckResult 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
-
-