public enum BoundaryVia extends Enum<BoundaryVia>
Java class for BoundaryVia.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BoundaryVia"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="C"/> <enumeration value="G"/> <enumeration value="H"/> <enumeration value="L"/> <enumeration value="R"/> </restriction> </simpleType>
Enum Constant and Description |
---|
C
Circle
|
G
Great Circle
|
H
Rhumb Line
|
L
Counter Clockwise ARC
|
R
Clockwise ARC
|
Modifier and Type | Method and Description |
---|---|
static BoundaryVia |
fromValue(String v) |
String |
value() |
static BoundaryVia |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundaryVia[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundaryVia C
public static final BoundaryVia G
public static final BoundaryVia H
public static final BoundaryVia L
public static final BoundaryVia R
public static BoundaryVia[] values()
for (BoundaryVia c : BoundaryVia.values()) System.out.println(c);
public static BoundaryVia 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 BoundaryVia fromValue(String v)
Copyright © 2017. All rights reserved.