lt.monarch.chart.style.enums
Enum StyleType

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

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


Enum Constant Summary
Enum Constant and Description
ARROW
           
BACKGROUNDIMG
          Background image paint attributes
GRADIENT
          Gradient paint attributes
HATCH
          Hatch paint attributes
LABEL
           
PAINT
          Painting attributes
PALETTE
          Color palette attributes
TEXT
          Text attributes
TICK
           
TITLE
           
 
Method Summary
Modifier and Type Method and Description
static StyleType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StyleType[] 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

TEXT

public static final StyleType TEXT
Text attributes


PAINT

public static final StyleType PAINT
Painting attributes


PALETTE

public static final StyleType PALETTE
Color palette attributes


GRADIENT

public static final StyleType GRADIENT
Gradient paint attributes


HATCH

public static final StyleType HATCH
Hatch paint attributes


BACKGROUNDIMG

public static final StyleType BACKGROUNDIMG
Background image paint attributes


TITLE

public static final StyleType TITLE

TICK

public static final StyleType TICK

LABEL

public static final StyleType LABEL

ARROW

public static final StyleType ARROW
Method Detail

values

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

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

valueOf

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