public enum LicenseState extends Enum<LicenseState>
Represents possible license states.
| Enum Constant and Description |
|---|
Evaluation
The license is Evaluation
|
Licensed
The license is a proper valid license.
|
Unknown
unknown state of the license, may be hacked
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static LicenseState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LicenseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseState Evaluation
The license is Evaluation
public static final LicenseState Licensed
The license is a proper valid license.
public static final LicenseState Unknown
unknown state of the license, may be hacked
public static LicenseState[] values()
for (LicenseState c : LicenseState.values()) System.out.println(c);
public static LicenseState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
Copyright © 2025 Aspose. All rights reserved.