// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 // 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: 2011.05.30 at 01:37:07 odp. CEST // package cz.cuni.mff.peckam.java.origamist.model.jaxb; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CrimpFoldOperations. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="CrimpFoldOperations"> * <restriction base="{http://www.mff.cuni.cz/~peckam/java/origamist/diagram/v2}Operations"> * <enumeration value="INSIDE_CRIMP_FOLD"/> * <enumeration value="OUTSIDE_CRIMP_FOLD"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "CrimpFoldOperations") @XmlEnum(Operations.class) public enum CrimpFoldOperations { INSIDE_CRIMP_FOLD, OUTSIDE_CRIMP_FOLD; public String value() { return name(); } public static CrimpFoldOperations fromValue(String v) { return valueOf(v); } }