Enum RVChartType
- java.lang.Object
-
- java.lang.Enum<RVChartType>
-
- com.infragistics.reveal.sdk.api.model.RVChartType
-
- All Implemented Interfaces:
Serializable
,Comparable<RVChartType>
public enum RVChartType extends Enum<RVChartType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static RVChartType
valueOf(int value)
Returns the enum constant of this type with the specified name.static RVChartType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RVChartType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PIVOT
public static final RVChartType PIVOT
-
GRID
public static final RVChartType GRID
-
AREA_CHART
public static final RVChartType AREA_CHART
-
BAR_CHART
public static final RVChartType BAR_CHART
-
BUBBLE_CHART
public static final RVChartType BUBBLE_CHART
-
CANDLESTICK_CHART
public static final RVChartType CANDLESTICK_CHART
-
COLUMN_CHART
public static final RVChartType COLUMN_CHART
-
COMBO_CHART
public static final RVChartType COMBO_CHART
-
DOUGHNUT_CHART
public static final RVChartType DOUGHNUT_CHART
-
FUNNEL_CHART
public static final RVChartType FUNNEL_CHART
-
LINE_CHART
public static final RVChartType LINE_CHART
-
OHLC_CHART
public static final RVChartType OHLC_CHART
-
PIE_CHART
public static final RVChartType PIE_CHART
-
RADIAL_LINE_CHART
public static final RVChartType RADIAL_LINE_CHART
-
SCATTER_CHART
public static final RVChartType SCATTER_CHART
-
SPLINE_CHART
public static final RVChartType SPLINE_CHART
-
SPLINE_AREA_CHART
public static final RVChartType SPLINE_AREA_CHART
-
STACKED_AREA_CHART
public static final RVChartType STACKED_AREA_CHART
-
STACKED_BAR_CHART
public static final RVChartType STACKED_BAR_CHART
-
STACKED_COLUMN_CHART
public static final RVChartType STACKED_COLUMN_CHART
-
STEP_AREA_CHART
public static final RVChartType STEP_AREA_CHART
-
STEP_LINE_CHART
public static final RVChartType STEP_LINE_CHART
-
RADIAL_GAUGE
public static final RVChartType RADIAL_GAUGE
-
BULLET_GRAPH
public static final RVChartType BULLET_GRAPH
-
LINEAR_GAUGE
public static final RVChartType LINEAR_GAUGE
-
LABEL_GAUGE
public static final RVChartType LABEL_GAUGE
-
TREE_MAP
public static final RVChartType TREE_MAP
-
IMAGE
public static final RVChartType IMAGE
-
DIY
public static final RVChartType DIY
-
TEXT_VIEW
public static final RVChartType TEXT_VIEW
-
INDICATOR
public static final RVChartType INDICATOR
-
INDICATOR_TARGET
public static final RVChartType INDICATOR_TARGET
-
SPARKLINE
public static final RVChartType SPARKLINE
-
TEXT_BOX
public static final RVChartType TEXT_BOX
-
CHOROPLETH
public static final RVChartType CHOROPLETH
-
SCATTER_MAP
public static final RVChartType SCATTER_MAP
-
-
Method Detail
-
values
public static RVChartType[] 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 (RVChartType c : RVChartType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RVChartType 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 nameNullPointerException
- if the argument is null
-
getValue
public int getValue()
-
valueOf
public static RVChartType valueOf(int value)
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:
value
- 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 nameNullPointerException
- if the argument is null
-
-