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="Circle"/>
<enumeration value="GreatCircle"/>
<enumeration value="RhumbLine"/>
<enumeration value="CounterClockwiseArc"/>
<enumeration value="ClockwiseArc"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CIRCLE
Circle
|
CLOCKWISE_ARC
Clockwise ARC
|
COUNTER_CLOCKWISE_ARC
Counter Clockwise ARC
|
GREAT_CIRCLE
Great Circle
|
RHUMB_LINE
Rhumb Line
|
| 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 CIRCLE
public static final BoundaryVia GREAT_CIRCLE
public static final BoundaryVia RHUMB_LINE
public static final BoundaryVia COUNTER_CLOCKWISE_ARC
public static final BoundaryVia CLOCKWISE_ARC
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 © 2020. All rights reserved.