com.arctorus.documents
Enum BaselineType

java.lang.Object
  extended by java.lang.Enum<BaselineType>
      extended by com.arctorus.documents.BaselineType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BaselineType>

public enum BaselineType
extends java.lang.Enum<BaselineType>

Defines superscript and subscript text.

See Also:
TextFormat

Enum Constant Summary
NORMAL
          Normal text.
SUBSCRIPT
          Subscript text.
SUPERSCRIPT
          Superscript text.
 
Method Summary
static BaselineType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BaselineType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUPERSCRIPT

public static final BaselineType SUPERSCRIPT
Superscript text.


SUBSCRIPT

public static final BaselineType SUBSCRIPT
Subscript text.


NORMAL

public static final BaselineType NORMAL
Normal text.

Method Detail

values

public static final BaselineType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(BaselineType c : BaselineType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static BaselineType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name