public enum ActivationStatus extends java.lang.Enum<ActivationStatus>
Enum Constant and Description |
---|
ACTIVATION_COMPLETED
Activation successfully completed.
|
ACTIVATION_HARDWAREID_ERROR
Activation Hardware ID error.
|
ACTIVATION_NOT_FOUND_ON_SERVER
Activation not found on server, used for license deactivation.
|
ACTIVATION_NOT_REQUIRED
Activation NOT required.
|
ACTIVATION_REJECTED_FEATURE_DISABLED
Activation rejected due to disabled activations.
|
ACTIVATION_REJECTED_IP_BLOCK_RESTRICTION
Activation rejected due to IP block restriction.
|
ACTIVATION_REQUIRED
Activation required.
|
ACTIVATION_SERVER_CONNECTION_ERROR
Client can not connect to activation server.
|
ALREADY_ACTIVATED_ON_ANOTHER_COMPUTER
License already activated on another computer.
|
DEACTIVATION_COMPLETED
Deactivation completed.
|
DEACTIVATION_REJECTED_FEATURE_DISABLED
Deactivation rejected due to disabled deactivation.
|
LICENSE_NOT_FOUND_ON_ACTIVATION_SERVER
Given license can not be found on Online.License4J server, license was
removed.
|
MULTIPLE_ACTIVATION_LIMIT_REACHED
License has multiple activations defined, and activation limit is
reached.
|
MULTIPLE_DEACTIVATION_LIMIT_REACHED
License has multiple deactivation defined, and deactivation limit is
reached.
|
Modifier and Type | Method and Description |
---|---|
static ActivationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActivationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivationStatus ACTIVATION_SERVER_CONNECTION_ERROR
public static final ActivationStatus LICENSE_NOT_FOUND_ON_ACTIVATION_SERVER
public static final ActivationStatus ALREADY_ACTIVATED_ON_ANOTHER_COMPUTER
public static final ActivationStatus MULTIPLE_ACTIVATION_LIMIT_REACHED
public static final ActivationStatus ACTIVATION_COMPLETED
public static final ActivationStatus ACTIVATION_REQUIRED
public static final ActivationStatus ACTIVATION_NOT_REQUIRED
public static final ActivationStatus ACTIVATION_HARDWAREID_ERROR
public static final ActivationStatus ACTIVATION_REJECTED_IP_BLOCK_RESTRICTION
public static final ActivationStatus ACTIVATION_REJECTED_FEATURE_DISABLED
public static final ActivationStatus ACTIVATION_NOT_FOUND_ON_SERVER
public static final ActivationStatus DEACTIVATION_REJECTED_FEATURE_DISABLED
public static final ActivationStatus DEACTIVATION_COMPLETED
public static final ActivationStatus MULTIPLE_DEACTIVATION_LIMIT_REACHED
public static ActivationStatus[] values()
for (ActivationStatus c : ActivationStatus.values()) System.out.println(c);
public static ActivationStatus 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