public static enum ILineSeries.PlotSymbolType extends java.lang.Enum<ILineSeries.PlotSymbolType>
Enum Constant | Description |
---|---|
CIRCLE |
circle
|
CROSS |
cross
|
DIAMOND |
diamond
|
INVERTED_TRIANGLE |
inverted triangle
|
NONE |
none
|
PLUS |
plus
|
SQUARE |
square
|
TRIANGLE |
triangle
|
Modifier and Type | Field | Description |
---|---|---|
java.lang.String |
label |
the label for plot symbol
|
Modifier and Type | Method | Description |
---|---|---|
static ILineSeries.PlotSymbolType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ILineSeries.PlotSymbolType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ILineSeries.PlotSymbolType NONE
public static final ILineSeries.PlotSymbolType CIRCLE
public static final ILineSeries.PlotSymbolType SQUARE
public static final ILineSeries.PlotSymbolType DIAMOND
public static final ILineSeries.PlotSymbolType TRIANGLE
public static final ILineSeries.PlotSymbolType INVERTED_TRIANGLE
public static final ILineSeries.PlotSymbolType CROSS
public static final ILineSeries.PlotSymbolType PLUS
public static ILineSeries.PlotSymbolType[] values()
for (ILineSeries.PlotSymbolType c : ILineSeries.PlotSymbolType.values()) System.out.println(c);
public static ILineSeries.PlotSymbolType 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 null