public enum LicenseType extends Enum<LicenseType>
Enum Constant and Description |
---|
EVAL |
INSTANT_ON |
PERPETUAL |
TERM |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static LicenseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LicenseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseType INSTANT_ON
public static final LicenseType EVAL
public static final LicenseType TERM
public static final LicenseType PERPETUAL
public static final LicenseType UNKNOWN
public static LicenseType[] values()
for (LicenseType c : LicenseType.values()) System.out.println(c);
public static LicenseType 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 null Documentation Feedback
Copyright 2011 - 2018 Micro Focus or one of its affiliates.