// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 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: 2010.02.24 at 10:55:05 AM CST // package org.atdl4j.fixatdl.layout; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Border_t. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="Border_t"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="None"/> * <enumeration value="Line"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "Border_t") @XmlEnum public enum BorderT { @XmlEnumValue("None") NONE("None"), @XmlEnumValue("Line") LINE("Line"); private final String value; BorderT(String v) { value = v; } public String value() { return value; } public static BorderT fromValue(String v) { for (BorderT c: BorderT.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }