Module com.esri.arcgisruntime
Enum Class LabelLineOrientation
- All Implemented Interfaces:
Serializable
,Comparable<LabelLineOrientation>
,Constable
Whether
LabelDefinition.getPlacement()
above or below a line geometry
will be interpreted as above or below on the `screen`, or with respect to the `direction` of line's geometry
(that is, the digitization order in which the vertices are listed).- Since:
- 200.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionLabelDefinition.getPlacement()
above will mean that the label will be offset perpendicularly left from its line segment.LabelDefinition.getPlacement()
above will mean that the label will be offset perpendicularly from its line segment towards the top of the screen.The label will be offset perpendicularly to whichever side of the line geometry has space (defaulting to `Above`, in the `screen` sense). -
Method Summary
Modifier and TypeMethodDescriptionstatic LabelLineOrientation
Returns the enum constant of this class with the specified name.static LabelLineOrientation[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DIRECTION
LabelDefinition.getPlacement()
above will mean that the label will be offset perpendicularly left from its line segment.LabelDefinition.getPlacement()
below will mean that the label will be offset perpendicularly right from its line segment.- Since:
- 200.1.0
-
SCREEN
LabelDefinition.getPlacement()
above will mean that the label will be offset perpendicularly from its line segment towards the top of the screen.LabelDefinition.getPlacement()
below will mean that the label will be offset perpendicularly from its line segment towards the bottom of the screen.- Since:
- 200.1.0
-
UNCONSTRAINED
The label will be offset perpendicularly to whichever side of the line geometry has space (defaulting to `Above`, in the `screen` sense).- Since:
- 200.1.0
-
-
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
-