Package com.sas.lsaf.content.repository
Enum Class VersionDeleteInfo.DeleteStatus
java.lang.Object
java.lang.Enum<VersionDeleteInfo.DeleteStatus>
com.sas.lsaf.content.repository.VersionDeleteInfo.DeleteStatus
- All Implemented Interfaces:
Serializable,Comparable<VersionDeleteInfo.DeleteStatus>,Constable
- Enclosing class:
VersionDeleteInfo
The status of a deleted version of a file.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe version was permanently deleted.The version was not deleted because it is the last remaining version.The version was not deleted because was not be found. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static VersionDeleteInfo.DeleteStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DELETED
The version was permanently deleted. -
NOT_DELETED_VERSION_NOT_FOUND
The version was not deleted because was not be found. -
NOT_DELETED_LAST_VERSION
The version was not deleted because it is the last remaining version.
-
-
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
-