net.sf.dynamicreports.report.constant
Enum ChartType

java.lang.Object
  extended by java.lang.Enum<ChartType>
      extended by net.sf.dynamicreports.report.constant.ChartType
All Implemented Interfaces:
Serializable, Comparable<ChartType>

public enum ChartType
extends Enum<ChartType>

Author:
Ricardo Mariaca (r.mariaca@dynamicreports.org)

Enum Constant Summary
AREA
           
BAR
           
BAR3D
           
BUBBLE
           
CANDLESTICK
           
DIFFERENCE
           
GANTT
           
GROUPEDSTACKEDBAR
           
HIGHLOW
           
LAYEREDBAR
           
LINE
           
METER
           
MULTI_AXIS
           
PIE
           
PIE3D
           
SCATTER
           
SPIDER
           
STACKEDAREA
           
STACKEDBAR
           
STACKEDBAR3D
           
THERMOMETER
           
TIMESERIES
           
WATERFALLBAR
           
XYAREA
           
XYBAR
           
XYBLOCK
           
XYLINE
           
XYSTEP
           
 
Method Summary
static ChartType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ChartType[] 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

AREA

public static final ChartType AREA

STACKEDAREA

public static final ChartType STACKEDAREA

BAR

public static final ChartType BAR

LAYEREDBAR

public static final ChartType LAYEREDBAR

WATERFALLBAR

public static final ChartType WATERFALLBAR

BAR3D

public static final ChartType BAR3D

STACKEDBAR

public static final ChartType STACKEDBAR

STACKEDBAR3D

public static final ChartType STACKEDBAR3D

GROUPEDSTACKEDBAR

public static final ChartType GROUPEDSTACKEDBAR

LINE

public static final ChartType LINE

PIE

public static final ChartType PIE

PIE3D

public static final ChartType PIE3D

TIMESERIES

public static final ChartType TIMESERIES

DIFFERENCE

public static final ChartType DIFFERENCE

XYAREA

public static final ChartType XYAREA

XYBAR

public static final ChartType XYBAR

XYLINE

public static final ChartType XYLINE

XYSTEP

public static final ChartType XYSTEP

SCATTER

public static final ChartType SCATTER

MULTI_AXIS

public static final ChartType MULTI_AXIS

SPIDER

public static final ChartType SPIDER

XYBLOCK

public static final ChartType XYBLOCK

BUBBLE

public static final ChartType BUBBLE

CANDLESTICK

public static final ChartType CANDLESTICK

HIGHLOW

public static final ChartType HIGHLOW

METER

public static final ChartType METER

THERMOMETER

public static final ChartType THERMOMETER

GANTT

public static final ChartType GANTT
Method Detail

values

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

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

valueOf

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


Copyright © 2010-2014. All Rights Reserved.