/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.gml.xml.v311; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CompassPointEnumeration. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="CompassPointEnumeration"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="N"/> * <enumeration value="NNE"/> * <enumeration value="NE"/> * <enumeration value="ENE"/> * <enumeration value="E"/> * <enumeration value="ESE"/> * <enumeration value="SE"/> * <enumeration value="SSE"/> * <enumeration value="S"/> * <enumeration value="SSW"/> * <enumeration value="SW"/> * <enumeration value="WSW"/> * <enumeration value="W"/> * <enumeration value="WNW"/> * <enumeration value="NW"/> * <enumeration value="NNW"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "CompassPointEnumeration") @XmlEnum public enum CompassPointEnumeration { N, NNE, NE, ENE, E, ESE, SE, SSE, S, SSW, SW, WSW, W, WNW, NW, NNW; public String value() { return name(); } public static CompassPointEnumeration fromValue(final String v) { return valueOf(v); } }