Enum Class TLspLabelLocationProvider.Location
java.lang.Object
java.lang.Enum<TLspLabelLocationProvider.Location>
com.luciad.view.lightspeed.label.algorithm.TLspLabelLocationProvider.Location
- All Implemented Interfaces:
Serializable
,Comparable<TLspLabelLocationProvider.Location>
,Constable
- Enclosing class:
TLspLabelLocationProvider
public static enum TLspLabelLocationProvider.Location
extends Enum<TLspLabelLocationProvider.Location>
Possible locations that are based on the cardinal and inter-cardinal directions.
- Since:
- 2012.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUsed to place label at center.Used to place label at east.Used to place label at north.Used to place label at north east.Used to place label at north west.Used to place label at south.Used to place label at south east.Used to place label at south west.Used to place label at west. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLspLabelLocationProvider.Location[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SOUTH_EAST
Used to place label at south east. -
NORTH_WEST
Used to place label at north west. -
NORTH_EAST
Used to place label at north east. -
SOUTH_WEST
Used to place label at south west. -
EAST
Used to place label at east. -
WEST
Used to place label at west. -
NORTH
Used to place label at north. -
SOUTH
Used to place label at south. -
CENTER
Used to place label at center.
-
-
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
-