Package com.sas.lsaf.content.repository
Enum Class RepositoryFile.SigningStatus
java.lang.Object
java.lang.Enum<RepositoryFile.SigningStatus>
com.sas.lsaf.content.repository.RepositoryFile.SigningStatus
- All Implemented Interfaces:
Serializable,Comparable<RepositoryFile.SigningStatus>,Constable
- Enclosing class:
RepositoryFile
Describes the overall signature status of the file. If the file is not versioned then the only possible values
for the status are
NONE and CURRENT. If the file is versioned, all versions return the same
status.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe current version of the file is signed, and no previous versions are signed.The current version of the file is signed, and there is at least one previous version of the file that is signed.There are no signatures associated with the file.There is at least one previous version of the file that is signed and the current version is not signed. -
Method Summary
Modifier and TypeMethodDescriptionstatic RepositoryFile.SigningStatusReturns the enum constant of this class with the specified name.static RepositoryFile.SigningStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
There are no signatures associated with the file. -
PREVIOUS
There is at least one previous version of the file that is signed and the current version is not signed. -
CURRENT
The current version of the file is signed, and no previous versions are signed. -
CURRENT_AND_PREVIOUS
The current version of the file is signed, and there is at least one previous version of the file that is signed.
-
-
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
-