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 fx_modifier_enum_common.
14: *
15: * <p>The following schema fragment specifies the expected content contained within this class.
16: * <p>
17: * <pre>
18: * <simpleType name="fx_modifier_enum_common">
19: * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
20: * <enumeration value="CONST"/>
21: * <enumeration value="UNIFORM"/>
22: * <enumeration value="VARYING"/>
23: * <enumeration value="STATIC"/>
24: * <enumeration value="VOLATILE"/>
25: * <enumeration value="EXTERN"/>
26: * <enumeration value="SHARED"/>
27: * </restriction>
28: * </simpleType>
29: * </pre>
30: *
31: */
32: @XmlEnum
33: public enum FxModifierEnumCommon {
34:
35: CONST, UNIFORM, VARYING, STATIC, VOLATILE, EXTERN, SHARED;
36:
37: public String value() {
38: return name();
39: }
40:
41: public static FxModifierEnumCommon fromValue(String v) {
42: return valueOf(v);
43: }
44:
45: }
|