org.romaframework.module.chart.jfreechart.domain
Enum RenderOptions.LabelOrietation

java.lang.Object
  extended by java.lang.Enum<RenderOptions.LabelOrietation>
      extended by org.romaframework.module.chart.jfreechart.domain.RenderOptions.LabelOrietation
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RenderOptions.LabelOrietation>
Enclosing class:
RenderOptions

public static enum RenderOptions.LabelOrietation
extends java.lang.Enum<RenderOptions.LabelOrietation>


Enum Constant Summary
DOWN_45
           
DOWN_90
           
STANDART
           
UP_45
           
UP_90
           
 
Method Summary
static RenderOptions.LabelOrietation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RenderOptions.LabelOrietation[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

STANDART

public static final RenderOptions.LabelOrietation STANDART

DOWN_45

public static final RenderOptions.LabelOrietation DOWN_45

DOWN_90

public static final RenderOptions.LabelOrietation DOWN_90

UP_45

public static final RenderOptions.LabelOrietation UP_45

UP_90

public static final RenderOptions.LabelOrietation UP_90
Method Detail

values

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

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

valueOf

public static RenderOptions.LabelOrietation 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