public enum AzimuthElevationMaskGraphicsProjection extends Enum<AzimuthElevationMaskGraphicsProjection> implements Enumeration
AzimuthElevationMaskGraphics
are visualized.Enum Constant and Description |
---|
PROJECT_TO_ALTITUDE
Each direction of the mask extends from the center to a constant altitude above the
CentralBody . |
PROJECT_TO_RANGE
Each direction of the mask extends from the center by a constant length.
|
Modifier and Type | Method and Description |
---|---|
static AzimuthElevationMaskGraphicsProjection |
getDefault()
Get the enum constant that is considered to be the default.
|
static AzimuthElevationMaskGraphicsProjection |
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 AzimuthElevationMaskGraphicsProjection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AzimuthElevationMaskGraphicsProjection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzimuthElevationMaskGraphicsProjection PROJECT_TO_RANGE
public static final AzimuthElevationMaskGraphicsProjection PROJECT_TO_ALTITUDE
CentralBody
.public static AzimuthElevationMaskGraphicsProjection[] values()
for (AzimuthElevationMaskGraphicsProjection c : AzimuthElevationMaskGraphicsProjection.values()) System.out.println(c);
public static AzimuthElevationMaskGraphicsProjection 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 AzimuthElevationMaskGraphicsProjection getFromValue(int value)
value
- a numeric value.@Nonnull public static AzimuthElevationMaskGraphicsProjection getDefault()