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