Package de.espirit.firstspirit.storage
Enum Class RevisionOperation.OperationType
java.lang.Object
java.lang.Enum<RevisionOperation.OperationType>
de.espirit.firstspirit.storage.RevisionOperation.OperationType
- All Implemented Interfaces:
Serializable
,Comparable<RevisionOperation.OperationType>
,Constable
- Enclosing interface:
- RevisionOperation<T>
The type of the revision operation.
- Since:
- 4.0.120
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates a commit of content changes.Indicates a create operationIndicates a delete operationIndicates amodification operation
Indicates a move operationIndicates a release operationIndicates a server release operation -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static RevisionOperation.OperationType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREATE
Indicates a create operation- Since:
- 4.0.122
- See Also:
-
MODIFY
Indicates amodification operation
- Since:
- 4.0.122
- See Also:
-
MOVE
Indicates a move operation- Since:
- 4.0.120
- See Also:
-
DELETE
Indicates a delete operation- Since:
- 4.0.120
- See Also:
-
CONTENT_COMMIT
Indicates a commit of content changes.- Since:
- 4.0.122
- See Also:
-
RELEASE
Indicates a release operation- Since:
- 4.0.122
- See Also:
-
SERVER_RELEASE
Indicates a server release operation- Since:
- 4.0.124
- See Also:
-
-
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
-