public enum GKLicenseValidationResult extends java.lang.Enum<GKLicenseValidationResult>
| Enum Constant and Description |
|---|
ERROR
An error occurred in the process of activating or validating a license
|
NO_LICENSES_AVAILABLE
There are no unused licenses left on the card
|
SUCCESS
A license was successfully validated
|
VALIDATION_FAILURE
The generated license is no longer valid
|
| Modifier and Type | Method and Description |
|---|---|
static GKLicenseValidationResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GKLicenseValidationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GKLicenseValidationResult NO_LICENSES_AVAILABLE
public static final GKLicenseValidationResult VALIDATION_FAILURE
public static final GKLicenseValidationResult SUCCESS
public static final GKLicenseValidationResult ERROR
public static GKLicenseValidationResult[] values()
for (GKLicenseValidationResult c : GKLicenseValidationResult.values()) System.out.println(c);
public static GKLicenseValidationResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null