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

com.vmware.vim25.NetIpStackInfoPreference Maven / Gradle / Ivy

The newest version!

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 NetIpStackInfoPreference. * *

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

*

 * <simpleType name="NetIpStackInfoPreference">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="reserved"/>
 *     <enumeration value="low"/>
 *     <enumeration value="medium"/>
 *     <enumeration value="high"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "NetIpStackInfoPreference") @XmlEnum public enum NetIpStackInfoPreference { @XmlEnumValue("reserved") RESERVED("reserved"), @XmlEnumValue("low") LOW("low"), @XmlEnumValue("medium") MEDIUM("medium"), @XmlEnumValue("high") HIGH("high"); private final String value; NetIpStackInfoPreference(String v) { value = v; } public String value() { return value; } public static NetIpStackInfoPreference fromValue(String v) { for (NetIpStackInfoPreference c: NetIpStackInfoPreference.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy