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 Common_profile_param.
14: *
15: * <p>The following schema fragment specifies the expected content contained within this class.
16: * <p>
17: * <pre>
18: * <simpleType name="Common_profile_param">
19: * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
20: * <enumeration value="A"/>
21: * <enumeration value="ANGLE"/>
22: * <enumeration value="B"/>
23: * <enumeration value="DOUBLE_SIDED"/>
24: * <enumeration value="G"/>
25: * <enumeration value="P"/>
26: * <enumeration value="Q"/>
27: * <enumeration value="R"/>
28: * <enumeration value="S"/>
29: * <enumeration value="T"/>
30: * <enumeration value="TIME"/>
31: * <enumeration value="U"/>
32: * <enumeration value="V"/>
33: * <enumeration value="W"/>
34: * <enumeration value="X"/>
35: * <enumeration value="Y"/>
36: * <enumeration value="Z"/>
37: * </restriction>
38: * </simpleType>
39: * </pre>
40: *
41: */
42: @XmlEnum
43: public enum CommonProfileParam {
44:
45: A, ANGLE, B, DOUBLE_SIDED, G, P, Q, R, S, T, TIME, U, V, W, X, Y, Z;
46:
47: public String value() {
48: return name();
49: }
50:
51: public static CommonProfileParam fromValue(String v) {
52: return valueOf(v);
53: }
54:
55: }
|