Enum Class SystemKeyType
- All Implemented Interfaces:
Serializable
,Comparable<SystemKeyType>
,Constable
Enumeration of the system key types of a Legacy Sam.
Each type corresponds to a specific use.
- Since:
- 0.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAuthentication key, to generate the signature of data read from the SAM.Work file key, to decipher and authorize the writing of work keys.Personalization key, to decipher and authorize the writing of parameters and system keys.Reloading key, to decipher and authorize the writing of counter ceilings. -
Method Summary
Modifier and TypeMethodDescriptionstatic SystemKeyType
Returns the enum constant of this class with the specified name.static SystemKeyType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PERSONALIZATION
Personalization key, to decipher and authorize the writing of parameters and system keys.- Since:
- 0.2.0
-
KEY_MANAGEMENT
Work file key, to decipher and authorize the writing of work keys.- Since:
- 0.2.0
-
RELOADING
Reloading key, to decipher and authorize the writing of counter ceilings.- Since:
- 0.2.0
-
AUTHENTICATION
Authentication key, to generate the signature of data read from the SAM.- Since:
- 0.2.0
-
-
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
-