AggregationType.java
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
- // Implementation, v2.2.8-b130911.1802
- // 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: 2018.12.31 at 10:32:54 AM CET
- //
- package nl.b3p.topnl.top50nl;
- import javax.xml.bind.annotation.XmlEnum;
- import javax.xml.bind.annotation.XmlEnumValue;
- import javax.xml.bind.annotation.XmlType;
- /**
- * Java class for AggregationType.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <p>
- *
- * <pre>
- * <simpleType name="AggregationType">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="set"/>
- * <enumeration value="bag"/>
- * <enumeration value="sequence"/>
- * <enumeration value="array"/>
- * <enumeration value="record"/>
- * <enumeration value="table"/>
- * </restriction>
- * </simpleType>
- * </pre>
- */
- @XmlType(name = "AggregationType")
- @XmlEnum
- public enum AggregationType {
- @XmlEnumValue("set")
- SET("set"),
- @XmlEnumValue("bag")
- BAG("bag"),
- @XmlEnumValue("sequence")
- SEQUENCE("sequence"),
- @XmlEnumValue("array")
- ARRAY("array"),
- @XmlEnumValue("record")
- RECORD("record"),
- @XmlEnumValue("table")
- TABLE("table");
- private final String value;
- AggregationType(String v) {
- value = v;
- }
- public String value() {
- return value;
- }
- public static AggregationType fromValue(String v) {
- for (AggregationType c : AggregationType.values()) {
- if (c.value.equals(v)) {
- return c;
- }
- }
- throw new IllegalArgumentException(v);
- }
- }