Home / Development / Documentation / 2.0.44 / ScaleAlignment
TreeGraph 2
 


info.bioinfweb.treegraph.document.format
Enum ScaleAlignment

java.lang.Object
  extended by java.lang.Enum<ScaleAlignment>
      extended by info.bioinfweb.treegraph.document.format.ScaleAlignment
All Implemented Interfaces:
Serializable, Comparable<ScaleAlignment>

public enum ScaleAlignment
extends Enum<ScaleAlignment>


Enum Constant Summary
LEFT
           
RIGHT
           
TREE_WIDTH
           
 
Method Summary
static ScaleAlignment valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ScaleAlignment[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LEFT

public static final ScaleAlignment LEFT

RIGHT

public static final ScaleAlignment RIGHT

TREE_WIDTH

public static final ScaleAlignment TREE_WIDTH
Method Detail

values

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

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

valueOf

public static ScaleAlignment valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null