![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VFlashModuleNotSupportedReason Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VFlashModuleNotSupportedReason.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="VFlashModuleNotSupportedReason">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CacheModeNotSupported"/>
* <enumeration value="CacheConsistencyTypeNotSupported"/>
* <enumeration value="CacheBlockSizeNotSupported"/>
* <enumeration value="CacheReservationNotSupported"/>
* <enumeration value="DiskSizeNotSupported"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "VFlashModuleNotSupportedReason")
@XmlEnum
public enum VFlashModuleNotSupportedReason {
@XmlEnumValue("CacheModeNotSupported")
CACHE_MODE_NOT_SUPPORTED("CacheModeNotSupported"),
@XmlEnumValue("CacheConsistencyTypeNotSupported")
CACHE_CONSISTENCY_TYPE_NOT_SUPPORTED("CacheConsistencyTypeNotSupported"),
@XmlEnumValue("CacheBlockSizeNotSupported")
CACHE_BLOCK_SIZE_NOT_SUPPORTED("CacheBlockSizeNotSupported"),
@XmlEnumValue("CacheReservationNotSupported")
CACHE_RESERVATION_NOT_SUPPORTED("CacheReservationNotSupported"),
@XmlEnumValue("DiskSizeNotSupported")
DISK_SIZE_NOT_SUPPORTED("DiskSizeNotSupported");
private final String value;
VFlashModuleNotSupportedReason(String v) {
value = v;
}
public String value() {
return value;
}
public static VFlashModuleNotSupportedReason fromValue(String v) {
for (VFlashModuleNotSupportedReason c: VFlashModuleNotSupportedReason.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy