Package org.jfree.ui
Class HorizontalAlignment
- java.lang.Object
-
- org.jfree.ui.HorizontalAlignment
-
- All Implemented Interfaces:
Serializable
public final class HorizontalAlignment extends Object implements Serializable
An enumeration of the horizontal alignment types (LEFT
,RIGHT
andCENTER
).- Author:
- David Gilbert
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static HorizontalAlignment
CENTER
Center alignment.static HorizontalAlignment
LEFT
Left alignment.static HorizontalAlignment
RIGHT
Right alignment.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Returnstrue
if this object is equal to the specified object, andfalse
otherwise.int
hashCode()
Returns a hash code value for the object.String
toString()
Returns a string representing the object.
-
-
-
Field Detail
-
LEFT
public static final HorizontalAlignment LEFT
Left alignment.
-
RIGHT
public static final HorizontalAlignment RIGHT
Right alignment.
-
CENTER
public static final HorizontalAlignment CENTER
Center alignment.
-
-