Package org.jfree.chart.ui
Class TextAnchor
- java.lang.Object
-
- org.jfree.chart.ui.TextAnchor
-
- All Implemented Interfaces:
java.io.Serializable
public final class TextAnchor extends java.lang.Object implements java.io.Serializable
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.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static TextAnchor
BASELINE_CENTER
Baseline/center.static TextAnchor
BASELINE_LEFT
Baseline/left.static TextAnchor
BASELINE_RIGHT
Baseline/right.static TextAnchor
BOTTOM_CENTER
Bottom/center.static TextAnchor
BOTTOM_LEFT
Bottom/left.static TextAnchor
BOTTOM_RIGHT
Bottom/right.static TextAnchor
CENTER
Middle/center.static TextAnchor
CENTER_LEFT
Middle/left.static TextAnchor
CENTER_RIGHT
Middle/right.static TextAnchor
HALF_ASCENT_CENTER
Half-ascent/center.static TextAnchor
HALF_ASCENT_LEFT
Half-ascent/left.static TextAnchor
HALF_ASCENT_RIGHT
Half-ascent/right.private java.lang.String
name
The name.private static long
serialVersionUID
For serialization.static TextAnchor
TOP_CENTER
Top/center.static TextAnchor
TOP_LEFT
Top/left.static TextAnchor
TOP_RIGHT
Top/right.
-
Constructor Summary
Constructors Modifier Constructor Description private
TextAnchor(java.lang.String name)
Private constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Returnstrue
if this object is equal to the specified object, andfalse
otherwise.int
hashCode()
Returns a hash code value for the object.boolean
isBaseline()
Returnstrue
if the anchor is a baseline anchor, andfalse
otherwise.boolean
isBottom()
Returnstrue
if the anchor is a bottom anchor, andfalse
otherwise.boolean
isHalfAscent()
Returnstrue
if the anchor is a half-ascent anchor, andfalse
otherwise.boolean
isHorizontalCenter()
Returnstrue
if the anchor is a center anchor, andfalse
otherwise.boolean
isLeft()
Returnstrue
if the anchor is a left-side anchor, andfalse
otherwise.boolean
isRight()
Returnstrue
if the anchor is a right-side anchor, andfalse
otherwise.boolean
isTop()
Returnstrue
if the anchor is a top anchor, andfalse
otherwise.boolean
isVerticalCenter()
Returnstrue
if the anchor is a half-ascent anchor, andfalse
otherwise.private java.lang.Object
readResolve()
Ensures that serialization returns the unique instances.java.lang.String
toString()
Returns a string representing the object.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
For serialization.- See Also:
- Constant Field Values
-
TOP_LEFT
public static final TextAnchor TOP_LEFT
Top/left.
-
TOP_CENTER
public static final TextAnchor TOP_CENTER
Top/center.
-
TOP_RIGHT
public static final TextAnchor TOP_RIGHT
Top/right.
-
HALF_ASCENT_LEFT
public static final TextAnchor HALF_ASCENT_LEFT
Half-ascent/left.
-
HALF_ASCENT_CENTER
public static final TextAnchor HALF_ASCENT_CENTER
Half-ascent/center.
-
HALF_ASCENT_RIGHT
public static final TextAnchor HALF_ASCENT_RIGHT
Half-ascent/right.
-
CENTER_LEFT
public static final TextAnchor CENTER_LEFT
Middle/left.
-
CENTER
public static final TextAnchor CENTER
Middle/center.
-
CENTER_RIGHT
public static final TextAnchor CENTER_RIGHT
Middle/right.
-
BASELINE_LEFT
public static final TextAnchor BASELINE_LEFT
Baseline/left.
-
BASELINE_CENTER
public static final TextAnchor BASELINE_CENTER
Baseline/center.
-
BASELINE_RIGHT
public static final TextAnchor BASELINE_RIGHT
Baseline/right.
-
BOTTOM_LEFT
public static final TextAnchor BOTTOM_LEFT
Bottom/left.
-
BOTTOM_CENTER
public static final TextAnchor BOTTOM_CENTER
Bottom/center.
-
BOTTOM_RIGHT
public static final TextAnchor BOTTOM_RIGHT
Bottom/right.
-
name
private java.lang.String name
The name.
-
-
Method Detail
-
isLeft
public boolean isLeft()
Returnstrue
if the anchor is a left-side anchor, andfalse
otherwise.- Returns:
- A boolean.
-
isRight
public boolean isRight()
Returnstrue
if the anchor is a right-side anchor, andfalse
otherwise.- Returns:
- A boolean.
-
isHorizontalCenter
public boolean isHorizontalCenter()
Returnstrue
if the anchor is a center anchor, andfalse
otherwise.- Returns:
- A boolean.
-
isTop
public boolean isTop()
Returnstrue
if the anchor is a top anchor, andfalse
otherwise.- Returns:
- A boolean.
-
isBottom
public boolean isBottom()
Returnstrue
if the anchor is a bottom anchor, andfalse
otherwise.- Returns:
- A boolean.
-
isBaseline
public boolean isBaseline()
Returnstrue
if the anchor is a baseline anchor, andfalse
otherwise.- Returns:
- A boolean.
-
isHalfAscent
public boolean isHalfAscent()
Returnstrue
if the anchor is a half-ascent anchor, andfalse
otherwise.- Returns:
- A boolean.
-
isVerticalCenter
public boolean isVerticalCenter()
Returnstrue
if the anchor is a half-ascent anchor, andfalse
otherwise.- Returns:
- A boolean.
-
toString
public java.lang.String toString()
Returns a string representing the object.- Overrides:
toString
in classjava.lang.Object
- Returns:
- The string.
-
equals
public boolean equals(java.lang.Object o)
Returnstrue
if this object is equal to the specified object, andfalse
otherwise.- Overrides:
equals
in classjava.lang.Object
- Parameters:
o
- the other object.- Returns:
- A boolean.
-
hashCode
public int hashCode()
Returns a hash code value for the object.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- The hashcode
-
readResolve
private java.lang.Object readResolve() throws java.io.ObjectStreamException
Ensures that serialization returns the unique instances.- Returns:
- The object.
- Throws:
java.io.ObjectStreamException
- if there is a problem.
-
-