public enum ColumnRole extends Enum<ColumnRole>
A column role describes the purpose of the data in that column: for example, a column might hold data describing tooltip text, data point annotations, or uncertainty indicators.
Refer to the official Google Charts documentation.
| Enum Constant and Description |
|---|
ANNOTATION |
ANNOTATION_TEXT |
CERTAINTY |
EMPHASIS |
INTERVAL |
SCOPE |
STYLE |
TOOLTIP |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ColumnRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnRole ANNOTATION
public static final ColumnRole ANNOTATION_TEXT
public static final ColumnRole CERTAINTY
public static final ColumnRole EMPHASIS
public static final ColumnRole INTERVAL
public static final ColumnRole SCOPE
public static final ColumnRole STYLE
public static final ColumnRole TOOLTIP
public static ColumnRole[] values()
for (ColumnRole c : ColumnRole.values()) System.out.println(c);
public static ColumnRole valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ColumnRole>Copyright © 2016. All Rights Reserved.