Enum Class TextAnchor

java.lang.Object
java.lang.Enum<TextAnchor>
org.jfree.chart3d.graphics2d.TextAnchor
All Implemented Interfaces:
Serializable, Comparable<TextAnchor>, Constable

public enum TextAnchor extends Enum<TextAnchor>
Used to indicate the position of an anchor point for a text string. This is frequently used to align a string to a fixed point in some coordinate space.
  • Enum Constant Details

  • Method Details

    • values

      public static TextAnchor[] 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 TextAnchor 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
    • isLeft

      public boolean isLeft()
      Returns true if this anchor is at the left side of the text bounds, and false otherwise.
      Returns:
      A boolean.
    • isHorizontalCenter

      public boolean isHorizontalCenter()
      Returns true if this anchor is horizontally at the center of the text bounds, and false otherwise.
      Returns:
      A boolean.
    • isRight

      public boolean isRight()
      Returns true if this anchor is at the right side of the text bounds, and false otherwise.
      Returns:
      A boolean.
    • isTop

      public boolean isTop()
      Returns true if this anchor is at the top of the text bounds, and false otherwise.
      Returns:
      A boolean.
    • isHalfAscent

      public boolean isHalfAscent()
      Returns true if this anchor is at the half-ascent level of the text bounds, and false otherwise.
      Returns:
      A boolean.
    • isHalfHeight

      public boolean isHalfHeight()
      Returns true if this anchor is at the half-height level of the text bounds, and false otherwise.
      Returns:
      A boolean.
    • isBaseline

      public boolean isBaseline()
      Returns true if this anchor is at the baseline level of the text bounds, and false otherwise.
      Returns:
      A boolean.
    • isBottom

      public boolean isBottom()
      Returns true if this anchor is at the bottom of the text bounds, and false otherwise.
      Returns:
      A boolean.
    • toString

      public String toString()
      Returns a string representing the object.
      Overrides:
      toString in class Enum<TextAnchor>
      Returns:
      The string.