// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // 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: 2016.07.27 at 04:06:37 PM EDT // package org.isotc211._2005.gmd; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MD_TopicCategoryCode_Type. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="MD_TopicCategoryCode_Type"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="farming"/> * <enumeration value="biota"/> * <enumeration value="boundaries"/> * <enumeration value="climatologyMeteorologyAtmosphere"/> * <enumeration value="economy"/> * <enumeration value="elevation"/> * <enumeration value="environment"/> * <enumeration value="geoscientificInformation"/> * <enumeration value="health"/> * <enumeration value="imageryBaseMapsEarthCover"/> * <enumeration value="intelligenceMilitary"/> * <enumeration value="inlandWaters"/> * <enumeration value="location"/> * <enumeration value="oceans"/> * <enumeration value="planningCadastre"/> * <enumeration value="society"/> * <enumeration value="structure"/> * <enumeration value="transportation"/> * <enumeration value="utilitiesCommunication"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "MD_TopicCategoryCode_Type") @XmlEnum public enum MDTopicCategoryCodeType { @XmlEnumValue("farming") FARMING("farming"), @XmlEnumValue("biota") BIOTA("biota"), @XmlEnumValue("boundaries") BOUNDARIES("boundaries"), @XmlEnumValue("climatologyMeteorologyAtmosphere") CLIMATOLOGY_METEOROLOGY_ATMOSPHERE("climatologyMeteorologyAtmosphere"), @XmlEnumValue("economy") ECONOMY("economy"), @XmlEnumValue("elevation") ELEVATION("elevation"), @XmlEnumValue("environment") ENVIRONMENT("environment"), @XmlEnumValue("geoscientificInformation") GEOSCIENTIFIC_INFORMATION("geoscientificInformation"), @XmlEnumValue("health") HEALTH("health"), @XmlEnumValue("imageryBaseMapsEarthCover") IMAGERY_BASE_MAPS_EARTH_COVER("imageryBaseMapsEarthCover"), @XmlEnumValue("intelligenceMilitary") INTELLIGENCE_MILITARY("intelligenceMilitary"), @XmlEnumValue("inlandWaters") INLAND_WATERS("inlandWaters"), @XmlEnumValue("location") LOCATION("location"), @XmlEnumValue("oceans") OCEANS("oceans"), @XmlEnumValue("planningCadastre") PLANNING_CADASTRE("planningCadastre"), @XmlEnumValue("society") SOCIETY("society"), @XmlEnumValue("structure") STRUCTURE("structure"), @XmlEnumValue("transportation") TRANSPORTATION("transportation"), @XmlEnumValue("utilitiesCommunication") UTILITIES_COMMUNICATION("utilitiesCommunication"); private final String value; MDTopicCategoryCodeType(String v) { value = v; } public String value() { return value; } public static MDTopicCategoryCodeType fromValue(String v) { for (MDTopicCategoryCodeType c: MDTopicCategoryCodeType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }