public enum IndicatorTheme extends java.lang.Enum<IndicatorTheme>
| Enum Constant and Description |
|---|
DARK |
GRAYSCALE_DARK |
GRAYSCALE_LIGHT |
LIGHT |
| Modifier and Type | Method and Description |
|---|---|
int |
getLineColor()
Returns the line color
|
int |
getPointColor()
Returns the point color
|
static IndicatorTheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndicatorTheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndicatorTheme LIGHT
public static final IndicatorTheme DARK
public static final IndicatorTheme GRAYSCALE_LIGHT
public static final IndicatorTheme GRAYSCALE_DARK
public static IndicatorTheme[] values()
for (IndicatorTheme c : IndicatorTheme.values()) System.out.println(c);
public static IndicatorTheme 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 int getLineColor()
public int getPointColor()