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