Enum Class LabelLineOrientation

java.lang.Object
java.lang.Enum<LabelLineOrientation>
com.esri.arcgisruntime.mapping.labeling.LabelLineOrientation
All Implemented Interfaces:
Serializable, Comparable<LabelLineOrientation>, Constable

public enum LabelLineOrientation extends Enum<LabelLineOrientation>
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
  • Enum Constant Details

    • DIRECTION

      public static final LabelLineOrientation 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

      public static final LabelLineOrientation 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

      public static final LabelLineOrientation 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

      public static LabelLineOrientation[] 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

      public static LabelLineOrientation valueOf(String name)
      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 name
      NullPointerException - if the argument is null