public enum LicenseState extends Enum<LicenseState>
| Enum Constant and Description |
|---|
FREE |
FULL |
TRIAL |
TRIAL_EXPIRED |
| Modifier and Type | Method and Description |
|---|---|
Resolution |
resolution() |
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 FREE
public static final LicenseState FULL
public static final LicenseState TRIAL
public static final LicenseState TRIAL_EXPIRED
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 Resolution resolution()
Copyright © 2024 Suncode. All rights reserved.