public enum CesiumArcType extends Enum<CesiumArcType> implements Enumeration
Enum Constant and Description |
---|
GEODESIC
The arc is a geodesic, which is the shortest path conforming to the surface of an ellipsoid.
|
NONE
The arc is a straight line that does not conform to the surface of an ellipsoid.
|
RHUMB
The arc is a rhumb line, or loxodrome, which is the path of constant heading conforming to the surface of an ellipsoid.
|
Modifier and Type | Method and Description |
---|---|
static CesiumArcType |
getDefault()
Get the enum constant that is considered to be the default.
|
static CesiumArcType |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static CesiumArcType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CesiumArcType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CesiumArcType NONE
public static final CesiumArcType GEODESIC
public static final CesiumArcType RHUMB
public static CesiumArcType[] values()
for (CesiumArcType c : CesiumArcType.values()) System.out.println(c);
public static CesiumArcType 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 int getValue()
getValue
in interface Enumeration
@Nonnull public static CesiumArcType getFromValue(int value)
value
- a numeric value.@Nonnull public static CesiumArcType getDefault()