
com.vmware.vim.LicenseReservationInfoState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* 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>
*
*
*/
@XmlType(name = "LicenseReservationInfoState")
@XmlEnum
public enum LicenseReservationInfoState {
@XmlEnumValue("notUsed")
NOT_USED("notUsed"),
@XmlEnumValue("noLicense")
NO_LICENSE("noLicense"),
@XmlEnumValue("unlicensedUse")
UNLICENSED_USE("unlicensedUse"),
@XmlEnumValue("licensed")
LICENSED("licensed");
private final String value;
LicenseReservationInfoState(String v) {
value = v;
}
public String value() {
return value;
}
public static LicenseReservationInfoState fromValue(String v) {
for (LicenseReservationInfoState c: LicenseReservationInfoState.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy