public enum LineStyle extends Enum<LineStyle>
| Enum Constant and Description |
|---|
AREA |
BEZIER_CURVE |
HISTOGRAM |
HISTOGRAM_FILLED |
NONE |
NORMAL |
STAIR_CASE |
ZERO_ORDER_HOLDER |
| Modifier and Type | Method and Description |
|---|---|
static LineStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineStyle NONE
public static final LineStyle NORMAL
public static final LineStyle AREA
public static final LineStyle ZERO_ORDER_HOLDER
public static final LineStyle STAIR_CASE
public static final LineStyle HISTOGRAM
public static final LineStyle HISTOGRAM_FILLED
public static final LineStyle BEZIER_CURVE
public static LineStyle[] values()
for (LineStyle c : LineStyle.values()) System.out.println(c);
public static LineStyle 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 GSI Helmholtzzentrum für Schwerionenforschung GmbH. All rights reserved.