public enum ChartShape extends Enum<ChartShape>
This is open source software released under the Apache 2.0 License
| Modifier and Type | Class and Description |
|---|---|
static class |
ChartShape.DefaultProvider
The default shape provider
|
static interface |
ChartShape.Provider
An interface to an entity that provides shapes for different keys
|
| Enum Constant and Description |
|---|
CIRCLE |
DIAMOND |
SQUARE |
TRIANGLE_DOWN |
TRIANGLE_LEFT |
TRIANGLE_RIGHT |
TRIANGLE_UP |
| Modifier and Type | Method and Description |
|---|---|
static ChartShape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartShape CIRCLE
public static final ChartShape SQUARE
public static final ChartShape DIAMOND
public static final ChartShape TRIANGLE_UP
public static final ChartShape TRIANGLE_DOWN
public static final ChartShape TRIANGLE_RIGHT
public static final ChartShape TRIANGLE_LEFT
public static ChartShape[] values()
for (ChartShape c : ChartShape.values()) System.out.println(c);
public static ChartShape 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 nullCopyright 2014-2017, Xavier Witdouck