public enum RendererType extends java.lang.Enum<RendererType> implements com.haulmont.chile.core.datatypes.impl.EnumClass<java.lang.String>
Enum Constant and Description |
---|
AREA_CHART |
BAR_CHART |
COL_HEATMAP |
HEATMAP |
LINE_CHART |
ROW_HEATMAP |
SCATTER_CHART |
STACKED_BAR_CHART |
TABLE |
TABLE_BAR_CHART |
TSV_EXPORT |
Modifier and Type | Method and Description |
---|---|
static RendererType |
fromId(java.lang.String id) |
java.lang.String |
getId() |
static RendererType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RendererType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RendererType TABLE
public static final RendererType TABLE_BAR_CHART
public static final RendererType HEATMAP
public static final RendererType ROW_HEATMAP
public static final RendererType COL_HEATMAP
public static final RendererType LINE_CHART
public static final RendererType BAR_CHART
public static final RendererType STACKED_BAR_CHART
public static final RendererType AREA_CHART
public static final RendererType SCATTER_CHART
public static final RendererType TSV_EXPORT
public static RendererType[] values()
for (RendererType c : RendererType.values()) System.out.println(c);
public static RendererType 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 namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getId()
getId
in interface com.haulmont.chile.core.datatypes.impl.EnumClass<java.lang.String>
public static RendererType fromId(java.lang.String id)