Enum Class PinStyle.EndPosition

java.lang.Object
java.lang.Enum<PinStyle.EndPosition>
com.luciad.layers.styles.PinStyle.EndPosition
All Implemented Interfaces:
Serializable, Comparable<PinStyle.EndPosition>, Constable
Enclosing class:
PinStyle

public static enum PinStyle.EndPosition extends Enum<PinStyle.EndPosition>
Possible positions for the end of the pin.

This is the location where the pin line connects to the label.

  • Enum Constant Details Link icon

    • ClosestEdge Link icon

      public static final PinStyle.EndPosition ClosestEdge
      The pin connects to the label at the middle point of the label's edge that is closest to the label's anchor geometry.
    • ClosestPointOnEdge Link icon

      public static final PinStyle.EndPosition ClosestPointOnEdge
      The pin connects to the label at the position on any of the label's edges that is closest to the label's anchor geometry.

      Note that this can include any of the corners of the label. This end position results in the smallest possible pin lines.

    • MiddleOfBoundsOnEdge Link icon

      public static final PinStyle.EndPosition MiddleOfBoundsOnEdge
      The pin connects to the label at the middle of the label bounds.

      Additionally pin line is cut off where it crosses the edge of the label.

  • Method Details Link icon

    • values Link icon

      public static PinStyle.EndPosition[] 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 Link icon

      public static PinStyle.EndPosition 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