public enum CompassDirectionType extends Enum<CompassDirectionType>
Java class for CompassDirectionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CompassDirectionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="north"/>
<enumeration value="northNortheast"/>
<enumeration value="northeast"/>
<enumeration value="eastNortheast"/>
<enumeration value="east"/>
<enumeration value="eastSoutheast"/>
<enumeration value="southeast"/>
<enumeration value="southSoutheast"/>
<enumeration value="south"/>
<enumeration value="southSouthwest"/>
<enumeration value="southwest"/>
<enumeration value="westSouthwest"/>
<enumeration value="west"/>
<enumeration value="westNorthwest"/>
<enumeration value="northWest"/>
<enumeration value="northNorthwest"/>
<enumeration value="noInformation"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EAST
East: The geographic half-octant centered on direction of east.
|
EAST_NORTHEAST
East-northeast: The geographic half-octant centered on the direction of east-northeast.
|
EAST_SOUTHEAST
East-southeast: The geographic half-octant centered on the direction of east-southeast.
|
NO_INFORMATION
No Information: There is no information specified regarding the attribute value.
|
NORTH
North: The geographic half-octant centered on the direction of north [desc] The half-octant extends from 348.75 (-11.25) arc degrees to 11.25 arc degrees.
|
NORTH_NORTHEAST
North-northeast: The geographic half-octant centered on the direction of north-northeast.
|
NORTH_NORTHWEST
North-northwest: The geographic half-octant centered on the direction of north-northwest.
|
NORTH_WEST
Northwest: The geographic half-octant centered on the direction of northwest.
|
NORTHEAST
Northeast: The geographic half-octant centered on the direction of northeast.
|
SOUTH
South: The geographic half-octant centered on the direction of south.
|
SOUTH_SOUTHEAST
South-southeast: The geographic half-octant centered on the direction of south-southeast.
|
SOUTH_SOUTHWEST
South-southwest: The geographic half-octant centered on the direction of south-southwest [desc] The half-octant extends from 191.25 arc degrees to 213.75 arc degrees.
|
SOUTHEAST
Southeast: The geographic half-octant centered on the direction of southeast.
|
SOUTHWEST
Southwest: The geographic half-octant centered on the direction of southwest [desc] The half-octant extends from 213.75 arc degrees to 236.25 arc degrees.
|
WEST
West: The geographic half-octant centered on the direction of west.
|
WEST_NORTHWEST
West-northwest: The geographic half-octant centered on the direction of west-northwest.
|
WEST_SOUTHWEST
West-southwest: The geographic half-octant centered on the direction of west-southwest [desc] The half-octant extends from 236.25 arc degrees to 258.75 arc degrees.
|
| Modifier and Type | Method and Description |
|---|---|
static CompassDirectionType |
fromValue(String v) |
String |
value() |
static CompassDirectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompassDirectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompassDirectionType NORTH
public static final CompassDirectionType NORTH_NORTHEAST
public static final CompassDirectionType NORTHEAST
public static final CompassDirectionType EAST_NORTHEAST
public static final CompassDirectionType EAST
public static final CompassDirectionType EAST_SOUTHEAST
public static final CompassDirectionType SOUTHEAST
public static final CompassDirectionType SOUTH_SOUTHEAST
public static final CompassDirectionType SOUTH
public static final CompassDirectionType SOUTH_SOUTHWEST
public static final CompassDirectionType SOUTHWEST
public static final CompassDirectionType WEST_SOUTHWEST
public static final CompassDirectionType WEST
public static final CompassDirectionType WEST_NORTHWEST
public static final CompassDirectionType NORTH_WEST
public static final CompassDirectionType NORTH_NORTHWEST
public static final CompassDirectionType NO_INFORMATION
public static CompassDirectionType[] values()
for (CompassDirectionType c : CompassDirectionType.values()) System.out.println(c);
public static CompassDirectionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static CompassDirectionType fromValue(String v)
Copyright © 2014–2016 Pink Summit, LLC. All rights reserved.