Enum Class TLspMGRSGridOverlayLabelBuilder.Content
java.lang.Object
java.lang.Enum<TLspMGRSGridOverlayLabelBuilder.Content>
com.luciad.view.lightspeed.painter.grid.mgrs.TLspMGRSGridOverlayLabelBuilder.Content
- All Implemented Interfaces:
Serializable
,Comparable<TLspMGRSGridOverlayLabelBuilder.Content>
,Constable
- Enclosing class:
TLspMGRSGridOverlayLabelBuilder
public static enum TLspMGRSGridOverlayLabelBuilder.Content
extends Enum<TLspMGRSGridOverlayLabelBuilder.Content>
The content that is displayed in the label.
- Since:
- 2012.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA (part of) the coordinate that is common for all points in the view.The MGRS coordinate at the center of the view.The MGRS coordinate at the center of the right side of the view.The MGRS coordinate at the mouse cursor.The MGRS coordinate at the center of upper side of the view.The MGRS coordinate at the top right corner of the view.The MGRS coordinate at the top left corner of the view.The MGRS coordinate at the center of the lower side of the view.The MGRS coordinate at the bottom right corner of the view.The MGRS coordinate at the bottom left corner of the view.The MGRS coordinate at the center of the left side of the view. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COORDINATE_AT_CENTER
The MGRS coordinate at the center of the view. -
COORDINATE_AT_NORTH
The MGRS coordinate at the center of upper side of the view. -
COORDINATE_AT_NORTH_WEST
The MGRS coordinate at the top left corner of the view. -
COORDINATE_AT_WEST
The MGRS coordinate at the center of the left side of the view. -
COORDINATE_AT_SOUTH_WEST
The MGRS coordinate at the bottom left corner of the view. -
COORDINATE_AT_SOUTH
The MGRS coordinate at the center of the lower side of the view. -
COORDINATE_AT_SOUTH_EAST
The MGRS coordinate at the bottom right corner of the view. -
COORDINATE_AT_EAST
The MGRS coordinate at the center of the right side of the view. Constant representing the center of the right side. -
COORDINATE_AT_NORTH_EAST
The MGRS coordinate at the top right corner of the view. -
COORDINATE_AT_MOUSE_CURSOR
The MGRS coordinate at the mouse cursor. -
COMMON_VIEW_COORDINATE
A (part of) the coordinate that is common for all points in the view. In combination with the labels that are visible in the view, you can easily recreate the full MGRS coordinate string. For example: when the view displays parts of the grid squares31UFS 19620 37303
and31UFS 19620 37302
, the common view coordinate will show31UFS
. The labels will show values like19620
and37303
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-