org.pentaho.reporting.engine.classic.core.style
Class VerticalTextAlign

java.lang.Object
  extended by org.pentaho.reporting.engine.classic.core.style.VerticalTextAlign
All Implemented Interfaces:
Serializable

public class VerticalTextAlign
extends Object
implements Serializable

Creation-Date: 24.11.2005, 17:08:01

Author:
Thomas Morgner
See Also:
Serialized Form

Field Summary
static VerticalTextAlign BASELINE
           
static VerticalTextAlign BOTTOM
           
static VerticalTextAlign CENTRAL
           
static VerticalTextAlign MIDDLE
           
static VerticalTextAlign SUB
           
static VerticalTextAlign SUPER
           
static VerticalTextAlign TEXT_BOTTOM
           
static VerticalTextAlign TEXT_TOP
           
static VerticalTextAlign TOP
           
static VerticalTextAlign USE_SCRIPT
           
 
Method Summary
 boolean equals(Object o)
           
 int hashCode()
           
 String toString()
          Returns a string representation of the object.
static VerticalTextAlign valueOf(String id)
           
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

USE_SCRIPT

public static final VerticalTextAlign USE_SCRIPT

BASELINE

public static final VerticalTextAlign BASELINE

SUB

public static final VerticalTextAlign SUB

SUPER

public static final VerticalTextAlign SUPER

TOP

public static final VerticalTextAlign TOP

TEXT_TOP

public static final VerticalTextAlign TEXT_TOP

CENTRAL

public static final VerticalTextAlign CENTRAL

MIDDLE

public static final VerticalTextAlign MIDDLE

BOTTOM

public static final VerticalTextAlign BOTTOM

TEXT_BOTTOM

public static final VerticalTextAlign TEXT_BOTTOM
Method Detail

valueOf

public static VerticalTextAlign valueOf(String id)

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

toString

public String toString()
Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Overrides:
toString in class Object
Returns:
a string representation of the object.