public enum Shape extends Enum<Shape> implements ChartEnum
Datalabels
or
Tooltip
.Enum Constant and Description |
---|
CALLOUT |
CIRCLE |
DIAMOND |
SQUARE |
TRIANGLE |
TRIANGLE_DOWN |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Shape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Shape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Shape CALLOUT
public static final Shape CIRCLE
public static final Shape DIAMOND
public static final Shape SQUARE
public static final Shape TRIANGLE
public static final Shape TRIANGLE_DOWN
public static Shape[] values()
for (Shape c : Shape.values()) System.out.println(c);
public static Shape 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 © 2019. All rights reserved.