public static enum PlotLine.DashStyle extends Enum<PlotLine.DashStyle>
PlotLine.setDashStyle(DashStyle) method. See this
demonstration for a visible reference
of the available dash styles.| Enum Constant and Description |
|---|
DASH
Medium size dashes, "-- -- -- --"
|
DASH_DOT
Medium size dashes and a dot, "-- .
|
DOT
Large (widely spaced) dots, ".
|
LONG_DASH
Long dashes, "--- --- --- ---"
|
LONG_DASH_DOT
Long dashes and a dot, "--- .
|
LONG_DASH_DOT_DOT
Long dashes and two dots, "--- ..
|
SHORT_DASH
Short dashes, "- - - -"
|
SHORT_DASH_DOT
Short (tightly spaced) dash and dots, "- .
|
SHORT_DASH_DOT_DOT
Short (tightly spaced) dash and two dots, "- .
|
SHORT_DOT
Short (tightly spaced) dots, ".
|
SOLID
Solid line, no dashes
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static PlotLine.DashStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlotLine.DashStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlotLine.DashStyle SOLID
public static final PlotLine.DashStyle SHORT_DASH
public static final PlotLine.DashStyle SHORT_DOT
public static final PlotLine.DashStyle SHORT_DASH_DOT
public static final PlotLine.DashStyle SHORT_DASH_DOT_DOT
public static final PlotLine.DashStyle DOT
public static final PlotLine.DashStyle DASH
public static final PlotLine.DashStyle LONG_DASH
public static final PlotLine.DashStyle DASH_DOT
public static final PlotLine.DashStyle LONG_DASH_DOT
public static final PlotLine.DashStyle LONG_DASH_DOT_DOT
public static PlotLine.DashStyle[] values()
for (PlotLine.DashStyle c : PlotLine.DashStyle.values()) System.out.println(c);
public static PlotLine.DashStyle 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<PlotLine.DashStyle>Copyright © 2015. All Rights Reserved.