lt.monarch.chart.style.enums
Enum TextPaintMode

java.lang.Object
  extended by java.lang.Enum<TextPaintMode>
      extended by lt.monarch.chart.style.enums.TextPaintMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TextPaintMode>, StyleObject

public enum TextPaintMode
extends java.lang.Enum<TextPaintMode>
implements StyleObject

Label text painter


Enum Constant Summary
Enum Constant and Description
IMAGE_PAINT
          Image text painter
LADDER_PAINT
          Ladder text painter
NORMAL_PAINT
          Default java text painter
 
Method Summary
Modifier and Type Method and Description
 RotatedLabelPainter getPainter()
           
static TextPaintMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TextPaintMode[] 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

NORMAL_PAINT

public static final TextPaintMode NORMAL_PAINT
Default java text painter


LADDER_PAINT

public static final TextPaintMode LADDER_PAINT
Ladder text painter


IMAGE_PAINT

public static final TextPaintMode IMAGE_PAINT
Image text painter

Method Detail

values

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

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

valueOf

public static TextPaintMode 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

getPainter

public RotatedLabelPainter getPainter()