net.sf.dynamicreports.adhoc.configuration
Enum AdhocChartType

java.lang.Object
  extended by java.lang.Enum<AdhocChartType>
      extended by net.sf.dynamicreports.adhoc.configuration.AdhocChartType
All Implemented Interfaces:
Serializable, Comparable<AdhocChartType>

public enum AdhocChartType
extends Enum<AdhocChartType>

Author:
Ricardo Mariaca (dynamicreports@gmail.com)

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

STACKEDAREA

public static final AdhocChartType STACKEDAREA

BAR

public static final AdhocChartType BAR

STACKEDBAR

public static final AdhocChartType STACKEDBAR

BAR3D

public static final AdhocChartType BAR3D

STACKEDBAR3D

public static final AdhocChartType STACKEDBAR3D

LINE

public static final AdhocChartType LINE

LAYEREDBAR

public static final AdhocChartType LAYEREDBAR

DIFFERENCE

public static final AdhocChartType DIFFERENCE

PIE

public static final AdhocChartType PIE

PIE3D

public static final AdhocChartType PIE3D

SCATTER

public static final AdhocChartType SCATTER

SPIDER

public static final AdhocChartType SPIDER

TIMESERIES

public static final AdhocChartType TIMESERIES

XYAREA

public static final AdhocChartType XYAREA

XYBAR

public static final AdhocChartType XYBAR

XYLINE

public static final AdhocChartType XYLINE

BUBBLE

public static final AdhocChartType BUBBLE
Method Detail

values

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

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

valueOf

public static AdhocChartType 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-2012. All Rights Reserved.