Package com.seeq.utilities.license
Enum Class LicenseEntry.Validity
- All Implemented Interfaces:
Serializable
,Comparable<LicenseEntry.Validity>
,Constable
- Enclosing class:
- LicenseEntry
The validity if the license-- anything other than "Valid" is considered invalid (duh).
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA license file appears to have been corrupted or tampered with.The user has set their clock back, possibly innocently or possibly to extend their trial.All license files found are expired or are otherwise invalid.No license file was detected in the designated folder.The user is over a limit in the license.The RLM ezclient returned an error code we didn't recognize.License is valid.No license file was found that is tied to this machine's hostname. -
Method Summary
Modifier and TypeMethodDescriptionstatic LicenseEntry.Validity
Returns the enum constant of this class with the specified name.static LicenseEntry.Validity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UnknownError
The RLM ezclient returned an error code we didn't recognize. This is not a valid license. -
Valid
License is valid. -
NoLicense
No license file was detected in the designated folder. -
Expired
All license files found are expired or are otherwise invalid. -
WrongHost
No license file was found that is tied to this machine's hostname. -
BadSignature
A license file appears to have been corrupted or tampered with. -
ClockTampering
The user has set their clock back, possibly innocently or possibly to extend their trial. -
OverLimit
The user is over a limit in the license.
-
-
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
-