Package io.deephaven.configuration
Enum Class DisCommandResult.LocationStatus
java.lang.Object
java.lang.Enum<DisCommandResult.LocationStatus>
io.deephaven.configuration.DisCommandResult.LocationStatus
- All Implemented Interfaces:
Serializable,Comparable<DisCommandResult.LocationStatus>,Constable
- Enclosing class:
- DisCommandResult
@ScriptApi
public static enum DisCommandResult.LocationStatus
extends Enum<DisCommandResult.LocationStatus>
Status of a truncate or delete operation on a single location.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe location's directory was deleted successfully.The operation was evaluated but not performed (dry run).The location could not be truncated or deleted (for delete: typically because the location has not been truncated first).The location was found on disk but is unknown to the table location provider; it was not touched.The location was truncated successfully. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static DisCommandResult.LocationStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DRY_RUN
The operation was evaluated but not performed (dry run). -
TRUNCATED
The location was truncated successfully. -
FAILED
The location could not be truncated or deleted (for delete: typically because the location has not been truncated first). -
SKIPPED
The location was found on disk but is unknown to the table location provider; it was not touched. -
DELETED
The location's directory was deleted successfully.
-
-
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
-