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

org.virtualbox_4_2.jaxws.BIOSBootMenuMode Maven / Gradle / Ivy

There is a newer version: 4.2.8
Show newest version

package org.virtualbox_4_2.jaxws;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for BIOSBootMenuMode. * *

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

*

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy