All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.HostUnresolvedVmfsResolutionSpecVmfsUuidResolution 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 HostUnresolvedVmfsResolutionSpecVmfsUuidResolution. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="HostUnresolvedVmfsResolutionSpecVmfsUuidResolution">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="resignature"/>
 *     <enumeration value="forceMount"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "HostUnresolvedVmfsResolutionSpecVmfsUuidResolution") @XmlEnum public enum HostUnresolvedVmfsResolutionSpecVmfsUuidResolution { @XmlEnumValue("resignature") RESIGNATURE("resignature"), @XmlEnumValue("forceMount") FORCE_MOUNT("forceMount"); private final String value; HostUnresolvedVmfsResolutionSpecVmfsUuidResolution(String v) { value = v; } public String value() { return value; } public static HostUnresolvedVmfsResolutionSpecVmfsUuidResolution fromValue(String v) { for (HostUnresolvedVmfsResolutionSpecVmfsUuidResolution c: HostUnresolvedVmfsResolutionSpecVmfsUuidResolution.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy