public enum DataStyleType extends java.lang.Enum<DataStyleType>
| Modifier and Type | Class and Description |
|---|---|
static class |
DataStyleType.Shape
Specified valid shapes for
DataStyleType.MARKER_SHAPE
and DataStyleType.UNDERLAY_SHAPE. |
| Enum Constant and Description |
|---|
MARKER_COLOR |
MARKER_SHAPE |
UNDERLAY_COLOR |
UNDERLAY_SHAPE |
| Modifier and Type | Method and Description |
|---|---|
static DataStyleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataStyleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataStyleType UNDERLAY_SHAPE
public static final DataStyleType UNDERLAY_COLOR
public static final DataStyleType MARKER_SHAPE
public static final DataStyleType MARKER_COLOR
public static DataStyleType[] values()
for (DataStyleType c : DataStyleType.values()) System.out.println(c);
public static DataStyleType 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