<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 
// See &lt;a href="http://java.sun.com/xml/jaxb"&gt;http://java.sun.com/xml/jaxb&lt;/a&gt; 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.04.01 at 12:23:35 PM EDT 
//


package com.restbucks.ordering.representations;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * &lt;p&gt;Java class for size.
 * 
 * &lt;p&gt;The following schema fragment specifies the expected content contained within this class.
 * &lt;p&gt;
 * &lt;pre&gt;
 * &amp;lt;simpleType name="size"&gt;
 *   &amp;lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
 *     &amp;lt;enumeration value="LARGE"/&gt;
 *     &amp;lt;enumeration value="SMALL"/&gt;
 *     &amp;lt;enumeration value="MEDIUM"/&gt;
 *   &amp;lt;/restriction&gt;
 * &amp;lt;/simpleType&gt;
 * &lt;/pre&gt;
 * 
 */
@XmlType(name = "size")
@XmlEnum
public enum Size {

    LARGE,
    SMALL,
    MEDIUM;

    public String value() {
        return name();
    }

    public static Size fromValue(String v) {
        return valueOf(v);
    }

}
</pre></body></html>