Enum Class TLcdGXYLocationListLabelingAlgorithm.Location
java.lang.Object
java.lang.Enum<TLcdGXYLocationListLabelingAlgorithm.Location>
com.luciad.view.gxy.labeling.algorithm.discrete.TLcdGXYLocationListLabelingAlgorithm.Location
- All Implemented Interfaces:
Serializable
,Comparable<TLcdGXYLocationListLabelingAlgorithm.Location>
,Constable
- Enclosing class:
TLcdGXYLocationListLabelingAlgorithm
public static enum TLcdGXYLocationListLabelingAlgorithm.Location
extends Enum<TLcdGXYLocationListLabelingAlgorithm.Location>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionLocation used to place a label at the center.Location used to place a label at the east.Location used to place a label at the north.Location used to place a label at the north east.Location used to place a label at the north west.Location used to place a label at the south.Location used to place a label at the south east.Location used to place a label at the south west.Location used to place a label at the west. -
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
-
SOUTH_EAST
Location used to place a label at the south east. -
NORTH_WEST
Location used to place a label at the north west. -
NORTH_EAST
Location used to place a label at the north east. -
SOUTH_WEST
Location used to place a label at the south west. -
EAST
Location used to place a label at the east. -
WEST
Location used to place a label at the west. -
NORTH
Location used to place a label at the north. -
SOUTH
Location used to place a label at the south. -
CENTER
Location used to place a label at the 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
-