01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2007.03.17 at 08:38:02 AM PDT
06: //
07:
08: package org.collada.colladaschema;
09:
10: import javax.xml.bind.annotation.XmlEnum;
11:
12: /**
13: * <p>Java class for gles_texcombiner_operatorAlpha_enums.
14: *
15: * <p>The following schema fragment specifies the expected content contained within this class.
16: * <p>
17: * <pre>
18: * <simpleType name="gles_texcombiner_operatorAlpha_enums">
19: * <restriction base="{http://www.w3.org/2001/XMLSchema}token">
20: * <enumeration value="REPLACE"/>
21: * <enumeration value="MODULATE"/>
22: * <enumeration value="ADD"/>
23: * <enumeration value="ADD_SIGNED"/>
24: * <enumeration value="INTERPOLATE"/>
25: * <enumeration value="SUBTRACT"/>
26: * </restriction>
27: * </simpleType>
28: * </pre>
29: *
30: */
31: @XmlEnum
32: public enum GlesTexcombinerOperatorAlphaEnums {
33:
34: REPLACE, MODULATE, ADD, ADD_SIGNED, INTERPOLATE, SUBTRACT;
35:
36: public String value() {
37: return name();
38: }
39:
40: public static GlesTexcombinerOperatorAlphaEnums fromValue(String v) {
41: return valueOf(v);
42: }
43:
44: }
|