Enum Class RestoreProgress.ProblemType
java.lang.Object
java.lang.Enum<RestoreProgress.ProblemType>
de.espirit.firstspirit.access.store.RestoreProgress.ProblemType
- All Implemented Interfaces:
Serializable
,Comparable<RestoreProgress.ProblemType>
,Constable
- Enclosing interface:
- RestoreProgress
The problem type.
- Since:
- 4.0.57
-
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 is not deleted anymore but already restored.Indicates that the element has been archived.Indicates that the parent element can not be found.Indicates that the element has not been foundIndicates that the restore of the element failed. -
Method Summary
Modifier and TypeMethodDescriptionstatic RestoreProgress.ProblemType
Returns the enum constant of this class with the specified name.static RestoreProgress.ProblemType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MISSING_PARENT
Indicates that the parent element can not be found.- Since:
- 4.0.57
-
RESTORE_FAILED
Indicates that the restore of the element failed.- Since:
- 4.0.57
-
ALREADY_RESTORED
Indicates that the element is not deleted anymore but already restored.- Since:
- 4.0.90
-
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
-
-
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
-