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_operandAlpha_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_operandAlpha_enums">
19: * <restriction base="{http://www.collada.org/2005/11/COLLADASchema}gl_blend_type">
20: * <enumeration value="SRC_ALPHA"/>
21: * <enumeration value="ONE_MINUS_SRC_ALPHA"/>
22: * </restriction>
23: * </simpleType>
24: * </pre>
25: *
26: */
27: @XmlEnum(GlBlendType.class)
28: public enum GlesTexcombinerOperandAlphaEnums {
29:
30: SRC_ALPHA, ONE_MINUS_SRC_ALPHA;
31:
32: public String value() {
33: return name();
34: }
35:
36: public static GlesTexcombinerOperandAlphaEnums fromValue(String v) {
37: return valueOf(v);
38: }
39:
40: }
|