public static enum Trace.TraceType extends java.lang.Enum<Trace.TraceType>
Enum Constant | Description |
---|---|
AREA |
Fill the area under the trace.
|
BAR |
Draw each data point as a bar whose width is defined by lineWidth.
|
DASH_LINE |
Dash Line
|
DASHDOT_LINE |
Dashdot Line
|
DASHDOTDOT_LINE |
Dashdotdot Line
|
DOT_LINE |
Dot Line
|
LINE_AREA |
It also has a solid line in addition to the area.
|
POINT |
Only draw point whose style is defined by pointStyle.
|
SOLID_LINE |
Solid Line
|
STEP_HORIZONTALLY |
Solid line in step.
|
STEP_VERTICALLY |
Solid line in step.
|
Modifier and Type | Method | Description |
---|---|---|
static java.lang.String[] |
stringValues() |
|
java.lang.String |
toString() |
|
static Trace.TraceType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Trace.TraceType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trace.TraceType SOLID_LINE
public static final Trace.TraceType DASH_LINE
public static final Trace.TraceType POINT
public static final Trace.TraceType BAR
public static final Trace.TraceType AREA
public static final Trace.TraceType LINE_AREA
public static final Trace.TraceType STEP_VERTICALLY
public static final Trace.TraceType STEP_HORIZONTALLY
public static final Trace.TraceType DASHDOT_LINE
public static final Trace.TraceType DASHDOTDOT_LINE
public static final Trace.TraceType DOT_LINE
public static Trace.TraceType[] values()
for (Trace.TraceType c : Trace.TraceType.values()) System.out.println(c);
public static Trace.TraceType 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Trace.TraceType>
public static java.lang.String[] stringValues()