Enum Class UnixFSTransactionCommandInstruction
java.lang.Object
java.lang.Enum<UnixFSTransactionCommandInstruction>
dev.getelements.elements.rt.transact.unix.UnixFSTransactionCommandInstruction
- All Implemented Interfaces:
Serializable
,Comparable<UnixFSTransactionCommandInstruction>
,Constable
Indicates the instruction.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAdds the suppliedResourceId
changes from the current transaction to theDataStore
.Adds the suppliedResourceId
changes from the current transaction to theDataStore
.Applies the task entry changes for the suppliedResourceId
Cleans up whatever resources were left behind as part of aPath
update during a transaction.Cleans up whatever resources were left behind as part of aResourceId
update during a transaction.Cleans up whatever resources were left behind as tasks made for aResourceId
No-op. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static UnixFSTransactionCommandInstruction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOOP
No-op. -
APPLY_PATH_CHANGE_FOR_RESOURCE
-
APPLY_REVERSE_PATH_CHANGE_FOR_RESOURCE
Adds the suppliedResourceId
changes from the current transaction to theDataStore
. -
APPLY_CONTENTS_CHANGE_FOR_RESOURCE
Adds the suppliedResourceId
changes from the current transaction to theDataStore
. -
APPLY_TASK_CHANGES_FOR_RESOURCE_ID
Applies the task entry changes for the suppliedResourceId
-
CLEANUP_RESOURCE_AT_PATH
Cleans up whatever resources were left behind as part of aPath
update during a transaction. -
CLEANUP_RESOURCE_FOR_RESOURCE_ID
Cleans up whatever resources were left behind as part of aResourceId
update during a transaction. -
CLEANUP_TASKS_FOR_RESOURCE_ID
Cleans up whatever resources were left behind as tasks made for aResourceId
-
-
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
-