Enum Class RevertProgress.ProblemType
java.lang.Object
java.lang.Enum<RevertProgress.ProblemType>
de.espirit.firstspirit.access.store.RevertProgress.ProblemType
- All Implemented Interfaces:
Serializable
,Comparable<RevertProgress.ProblemType>
,Constable
- Enclosing interface:
- RevertProgress
The problem type.
- 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 that the element has been archived.Indicates that a child of the element that should be restored was moved to another element.Indicates that the element has not been found.Indicates that the element could not be locked.Indicates that the revert of the element failed.Indicates that the element is write locked by a workflow. -
Method Summary
Modifier and TypeMethodDescriptionstatic RevertProgress.ProblemType
Returns the enum constant of this class with the specified name.static RevertProgress.ProblemType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REVERT_FAILED
Indicates that the revert of the element failed.- Since:
- 4.0.120
-
NOT_LOCKED
Indicates that the element could not be locked.- Since:
- 4.1.7
-
WRITE_LOCK
Indicates that the element is write locked by a workflow.- Since:
- 4.0.120
-
ARCHIVED
Indicates that the element has been archived.- Since:
- 4.0.120
-
NOT_FOUND
Indicates that the element has not been found.- Since:
- 4.0.120
-
CHILD_MOVED
Indicates that a child of the element that should be restored was moved to another element.- Since:
- 4.1.32
-
-
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
-