//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2007.03.17 at 08:38:02 AM PDT
//
package org.collada.colladaschema;
import javax.xml.bind.annotation.XmlEnum;
/**
* <p>Java class for fx_surface_format_hint_precision_enum.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* <simpleType name="fx_surface_format_hint_precision_enum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="LOW"/>
* <enumeration value="MID"/>
* <enumeration value="HIGH"/>
* </restriction>
* </simpleType>
* </pre>
*
*/
@XmlEnum
public enum FxSurfaceFormatHintPrecisionEnum {
LOW,
MID,
HIGH;
public String value() {
return name();
}
public static FxSurfaceFormatHintPrecisionEnum fromValue(String v) {
return valueOf(v);
}
}
|