|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ChartType>
org.hackystat.projectbrowser.googlechart.ChartType
public enum ChartType
Enumeration for Google Chart Type.
Enum Constant Summary | |
---|---|
HORIZONTAL_GROUP_BAR
horizontal bars that present data from different data sets in different bars. |
|
HORIZONTAL_SERIES_BAR
horizontal bars that present data from different data sets in a single bar. |
|
LINE
line chart. |
|
PIE
pie chart. |
|
PIE_3D
3D pie chart. |
|
RADAR
radar chart. |
|
SCATTER_PLOTS
scatter plots chart. |
|
SPARK_LINE
spark line chart. |
|
SPLINE_RADAR
spline radar chart. |
|
VENN_DIAGRAMS
venn diagrams chart. |
|
VERTICAL_GROUP_BAR
vertical bars that present data from different data sets in different bars. |
|
VERTICAL_SERIES_BAR
vertical bars that present data from different data set in a single bar. |
Method Summary | |
---|---|
java.lang.String |
abbrev()
|
static ChartType |
valueOf(java.lang.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 |
---|
public static final ChartType LINE
public static final ChartType SPARK_LINE
public static final ChartType HORIZONTAL_SERIES_BAR
public static final ChartType VERTICAL_SERIES_BAR
public static final ChartType HORIZONTAL_GROUP_BAR
public static final ChartType VERTICAL_GROUP_BAR
public static final ChartType PIE
public static final ChartType PIE_3D
public static final ChartType VENN_DIAGRAMS
public static final ChartType SCATTER_PLOTS
public static final ChartType RADAR
public static final ChartType SPLINE_RADAR
Method Detail |
---|
public static ChartType[] values()
for (ChartType c : ChartType.values()) System.out.println(c);
public static ChartType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String abbrev()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |