public enum LicenseReservationInfoState extends Enum<LicenseReservationInfoState>
Java class for LicenseReservationInfoState.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LicenseReservationInfoState">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="notUsed"/>
<enumeration value="noLicense"/>
<enumeration value="unlicensedUse"/>
<enumeration value="licensed"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
LICENSED |
NO_LICENSE |
NOT_USED |
UNLICENSED_USE |
| Modifier and Type | Method and Description |
|---|---|
static LicenseReservationInfoState |
fromValue(String v) |
String |
value() |
static LicenseReservationInfoState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LicenseReservationInfoState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LicenseReservationInfoState NOT_USED
public static final LicenseReservationInfoState NO_LICENSE
public static final LicenseReservationInfoState UNLICENSED_USE
public static final LicenseReservationInfoState LICENSED
public static LicenseReservationInfoState[] values()
for (LicenseReservationInfoState c : LicenseReservationInfoState.values()) System.out.println(c);
public static LicenseReservationInfoState 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 String value()
public static LicenseReservationInfoState fromValue(String v)
Copyright © 2018. All rights reserved.