Package org.jfree.ui
Class VerticalAlignment
- java.lang.Object
-
- org.jfree.ui.VerticalAlignment
-
- All Implemented Interfaces:
Serializable
public final class VerticalAlignment extends Object implements Serializable
An enumeration of the vertical alignment types (TOP
,BOTTOM
andCENTER
).- Author:
- David Gilbert
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static VerticalAlignment
BOTTOM
Bottom alignment.static VerticalAlignment
CENTER
Center alignment.static VerticalAlignment
TOP
Top alignment.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
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
-
TOP
public static final VerticalAlignment TOP
Top alignment.
-
BOTTOM
public static final VerticalAlignment BOTTOM
Bottom alignment.
-
CENTER
public static final VerticalAlignment CENTER
Center alignment.
-
-