public enum DashStyle extends Enum<DashStyle> implements ChartEnum
Visually they look like this:
Enum Constant and Description |
---|
DASH |
DASHDOT |
DOT |
LONGDASH |
LONGDASHDOT |
LONGDASHDOTDOT |
SHORTDASH |
SHORTDASHDOT |
SHORTDASHDOTDOT |
SHORTDOT |
SOLID |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static DashStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DashStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DashStyle SOLID
public static final DashStyle SHORTDASH
public static final DashStyle SHORTDOT
public static final DashStyle SHORTDASHDOT
public static final DashStyle SHORTDASHDOTDOT
public static final DashStyle DOT
public static final DashStyle DASH
public static final DashStyle LONGDASH
public static final DashStyle DASHDOT
public static final DashStyle LONGDASHDOT
public static final DashStyle LONGDASHDOTDOT
public static DashStyle[] values()
for (DashStyle c : DashStyle.values()) System.out.println(c);
public static 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 nullCopyright © 2020. All rights reserved.