![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.SimpleCommandEncoding Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for SimpleCommandEncoding.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="SimpleCommandEncoding">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CSV"/>
* <enumeration value="HEX"/>
* <enumeration value="STRING"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "SimpleCommandEncoding")
@XmlEnum
public enum SimpleCommandEncoding {
CSV,
HEX,
STRING;
public String value() {
return name();
}
public static SimpleCommandEncoding fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy