Enum Class TLspGARSGridOverlayLabelBuilder.Content
java.lang.Object
java.lang.Enum<TLspGARSGridOverlayLabelBuilder.Content>
com.luciad.view.lightspeed.painter.grid.gars.TLspGARSGridOverlayLabelBuilder.Content
- All Implemented Interfaces:
Serializable
,Comparable<TLspGARSGridOverlayLabelBuilder.Content>
,Constable
- Enclosing class:
TLspGARSGridOverlayLabelBuilder
public static enum TLspGARSGridOverlayLabelBuilder.Content
extends Enum<TLspGARSGridOverlayLabelBuilder.Content>
The content that is displayed in the label.
- Since:
- 2021.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 GARS coordinate at the center of the view.The GARS coordinate at the center of the right side of the view.The GARS coordinate at the mouse cursor.The GARS coordinate at the center of upper side of the view.The GARS coordinate at the top right corner of the view.The GARS coordinate at the top left corner of the view.The GARS coordinate at the center of the lower side of the view.The GARS coordinate at the bottom right corner of the view.The GARS coordinate at the bottom left corner of the view.The GARS 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 GARS coordinate at the center of the view. -
COORDINATE_AT_NORTH
The GARS coordinate at the center of upper side of the view. -
COORDINATE_AT_NORTH_WEST
The GARS coordinate at the top left corner of the view. -
COORDINATE_AT_WEST
The GARS coordinate at the center of the left side of the view. -
COORDINATE_AT_SOUTH_WEST
The GARS coordinate at the bottom left corner of the view. -
COORDINATE_AT_SOUTH
The GARS coordinate at the center of the lower side of the view. -
COORDINATE_AT_SOUTH_EAST
The GARS coordinate at the bottom right corner of the view. -
COORDINATE_AT_EAST
The GARS coordinate at the center of the right side of the view. Constant representing the center of the right side. -
COORDINATE_AT_NORTH_EAST
The GARS coordinate at the top right corner of the view. -
COORDINATE_AT_MOUSE_CURSOR
The GARS 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 GARS coordinate string. For example: when the view displays parts of the grid squares370MR3
and370MR4
, only370MR
is shown. The labels will show values like3
and4
.
-
-
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
-