//
// 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 gles_stencil_op_type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* <simpleType name="gles_stencil_op_type">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="KEEP"/>
* <enumeration value="ZERO"/>
* <enumeration value="REPLACE"/>
* <enumeration value="INCR"/>
* <enumeration value="DECR"/>
* <enumeration value="INVERT"/>
* </restriction>
* </simpleType>
* </pre>
*
*/
@XmlEnum
public enum GlesStencilOpType {
KEEP,
ZERO,
REPLACE,
INCR,
DECR,
INVERT;
public String value() {
return name();
}
public static GlesStencilOpType fromValue(String v) {
return valueOf(v);
}
}
|