lt.monarch.chart.chart2D.axis.layouters
Enum MultiLevelLabel

java.lang.Object
  extended by java.lang.Enum<MultiLevelLabel>
      extended by lt.monarch.chart.chart2D.axis.layouters.MultiLevelLabel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MultiLevelLabel>

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


Enum Constant Summary
Enum Constant and Description
NULL
          Indicates that no modifications are necessary to positions of labels of desired level.
Can be used to reset any settings.
RAISE
          Indicates that labels of desired level and levels lower than desired level should be moved to the next row of labels.
RAISE_AND_CENTER_FIXED_ON_RIGHT_RANGE
          Indicates that labels of desired level and levels lower than desired level should be moved to the next row of labels; and labels of desired level should be centered using fixed mode.
Label is centered between its own tick position and position of tick of next label of the same level.
RAISE_AND_CENTER_FLOATING_ON_RIGHT_RANGE
          Indicates that labels of desired level and levels lower than desired level should be moved to the next row of labels; and labels of desired level should be centered using floating mode.
Label is centered between its own tick position and position of tick of next label of the same level.
 
Method Summary
Modifier and Type Method and Description
 int getValue()
           
static MultiLevelLabel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MultiLevelLabel[] 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

NULL

public static final MultiLevelLabel NULL
Indicates that no modifications are necessary to positions of labels of desired level.
Can be used to reset any settings.


RAISE

public static final MultiLevelLabel RAISE
Indicates that labels of desired level and levels lower than desired level should be moved to the next row of labels.


RAISE_AND_CENTER_FIXED_ON_RIGHT_RANGE

public static final MultiLevelLabel RAISE_AND_CENTER_FIXED_ON_RIGHT_RANGE
Indicates that labels of desired level and levels lower than desired level should be moved to the next row of labels; and labels of desired level should be centered using fixed mode.
Label is centered between its own tick position and position of tick of next label of the same level.


RAISE_AND_CENTER_FLOATING_ON_RIGHT_RANGE

public static final MultiLevelLabel RAISE_AND_CENTER_FLOATING_ON_RIGHT_RANGE
Indicates that labels of desired level and levels lower than desired level should be moved to the next row of labels; and labels of desired level should be centered using floating mode.
Label is centered between its own tick position and position of tick of next label of the same level.

Method Detail

values

public static MultiLevelLabel[] 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 (MultiLevelLabel c : MultiLevelLabel.values())
    System.out.println(c);

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

valueOf

public static MultiLevelLabel 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
java.lang.NullPointerException - if the argument is null

getValue

public int getValue()