public enum LicenceTypeInfo extends Enum<LicenceTypeInfo>
| Enum Constant and Description |
|---|
NON_PRODUCTION |
OEM |
PRODUCTION |
TRIAL |
| Modifier and Type | Method and Description |
|---|---|
static LicenceTypeInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LicenceTypeInfo[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final LicenceTypeInfo OEM
public static final LicenceTypeInfo NON_PRODUCTION
public static final LicenceTypeInfo PRODUCTION
public static final LicenceTypeInfo TRIAL
public static LicenceTypeInfo[] values()
for (LicenceTypeInfo c : LicenceTypeInfo.values()) System.out.println(c);
public static LicenceTypeInfo valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null
Copyright © 2022. All rights reserved.