Package com.luciad.view.map
Enum Class TLcdXYGridOverlayLabelBuilder.Content
java.lang.Object
java.lang.Enum<TLcdXYGridOverlayLabelBuilder.Content>
com.luciad.view.map.TLcdXYGridOverlayLabelBuilder.Content
- All Implemented Interfaces:
Serializable
,Comparable<TLcdXYGridOverlayLabelBuilder.Content>
,Constable
- Enclosing class:
TLcdXYGridOverlayLabelBuilder
public static enum TLcdXYGridOverlayLabelBuilder.Content
extends Enum<TLcdXYGridOverlayLabelBuilder.Content>
The content that is displayed in the label.
- Since:
- 2016.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe XY coordinate at the center of the view.The XY coordinate at the center of the right side of the view.The XY coordinate at the center of upper side of the view.The XY coordinate at the top right corner of the view.The XY coordinate at the top left corner of the view.The XY coordinate at the center of the lower side of the view.The XY coordinate at the bottom right corner of the view.The XY coordinate at the bottom left corner of the view.The XY 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 XY coordinate at the center of the view. -
COORDINATE_AT_NORTH
The XY coordinate at the center of upper side of the view. -
COORDINATE_AT_NORTH_WEST
The XY coordinate at the top left corner of the view. -
COORDINATE_AT_WEST
The XY coordinate at the center of the left side of the view. -
COORDINATE_AT_SOUTH_WEST
The XY coordinate at the bottom left corner of the view. -
COORDINATE_AT_SOUTH
The XY coordinate at the center of the lower side of the view. -
COORDINATE_AT_SOUTH_EAST
The XY coordinate at the bottom right corner of the view. -
COORDINATE_AT_EAST
The XY coordinate at the center of the right side of the view. Constant representing the center of the right side. -
COORDINATE_AT_NORTH_EAST
The XY coordinate at the top right corner of the view.
-
-
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
-