net.sf.dynamicreports.adhoc.xmlconfiguration
Enum XmlAdhocChartType

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

public enum XmlAdhocChartType
extends Enum<XmlAdhocChartType>

Java class for ChartType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="ChartType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="AREA"/>
     <enumeration value="STACKEDAREA"/>
     <enumeration value="BAR"/>
     <enumeration value="STACKEDBAR"/>
     <enumeration value="GROUPEDSTACKEDBAR"/>
     <enumeration value="BAR3D"/>
     <enumeration value="STACKEDBAR3D"/>
     <enumeration value="LINE"/>
     <enumeration value="LAYEREDBAR"/>
     <enumeration value="WATERFALLBAR"/>
     <enumeration value="DIFFERENCE"/>
     <enumeration value="PIE"/>
     <enumeration value="PIE3D"/>
     <enumeration value="SCATTER"/>
     <enumeration value="SPIDER"/>
     <enumeration value="TIMESERIES"/>
     <enumeration value="XYAREA"/>
     <enumeration value="XYBAR"/>
     <enumeration value="XYLINE"/>
     <enumeration value="XYSTEP"/>
     <enumeration value="BUBBLE"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AREA
           
BAR
           
BAR_3_D
           
BUBBLE
           
DIFFERENCE
           
GROUPEDSTACKEDBAR
           
LAYEREDBAR
           
LINE
           
PIE
           
PIE_3_D
           
SCATTER
           
SPIDER
           
STACKEDAREA
           
STACKEDBAR
           
STACKEDBAR_3_D
           
TIMESERIES
           
WATERFALLBAR
           
XYAREA
           
XYBAR
           
XYLINE
           
XYSTEP
           
 
Method Summary
static XmlAdhocChartType fromValue(String v)
           
 String value()
           
static XmlAdhocChartType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static XmlAdhocChartType[] 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 XmlAdhocChartType AREA

STACKEDAREA

public static final XmlAdhocChartType STACKEDAREA

BAR

public static final XmlAdhocChartType BAR

STACKEDBAR

public static final XmlAdhocChartType STACKEDBAR

GROUPEDSTACKEDBAR

public static final XmlAdhocChartType GROUPEDSTACKEDBAR

BAR_3_D

public static final XmlAdhocChartType BAR_3_D

STACKEDBAR_3_D

public static final XmlAdhocChartType STACKEDBAR_3_D

LINE

public static final XmlAdhocChartType LINE

LAYEREDBAR

public static final XmlAdhocChartType LAYEREDBAR

WATERFALLBAR

public static final XmlAdhocChartType WATERFALLBAR

DIFFERENCE

public static final XmlAdhocChartType DIFFERENCE

PIE

public static final XmlAdhocChartType PIE

PIE_3_D

public static final XmlAdhocChartType PIE_3_D

SCATTER

public static final XmlAdhocChartType SCATTER

SPIDER

public static final XmlAdhocChartType SPIDER

TIMESERIES

public static final XmlAdhocChartType TIMESERIES

XYAREA

public static final XmlAdhocChartType XYAREA

XYBAR

public static final XmlAdhocChartType XYBAR

XYLINE

public static final XmlAdhocChartType XYLINE

XYSTEP

public static final XmlAdhocChartType XYSTEP

BUBBLE

public static final XmlAdhocChartType BUBBLE
Method Detail

values

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

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

valueOf

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

value

public String value()

fromValue

public static XmlAdhocChartType fromValue(String v)


Copyright © 2010-2012. All Rights Reserved.