org.virtualbox_4_2.jaxws.DirectoryCreateFlag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vboxjws Show documentation
Show all versions of vboxjws Show documentation
VirtualBox Client API 4.2.4
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 DirectoryCreateFlag.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="DirectoryCreateFlag">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="None"/>
* <enumeration value="Parents"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "DirectoryCreateFlag")
@XmlEnum
public enum DirectoryCreateFlag {
@XmlEnumValue("None")
NONE("None"),
@XmlEnumValue("Parents")
PARENTS("Parents");
private final String value;
DirectoryCreateFlag(String v) {
value = v;
}
public String value() {
return value;
}
public static DirectoryCreateFlag fromValue(String v) {
for (DirectoryCreateFlag c: DirectoryCreateFlag.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy