public enum STScatterStyle extends Enum<STScatterStyle>
Java class for ST_ScatterStyle.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_ScatterStyle">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="line"/>
<enumeration value="lineMarker"/>
<enumeration value="marker"/>
<enumeration value="smooth"/>
<enumeration value="smoothMarker"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
LINE
Line
|
LINE_MARKER
Line with Markers
|
MARKER
Marker
|
NONE
None
|
SMOOTH
Smooth
|
SMOOTH_MARKER
Smooth with Markers
|
| Modifier and Type | Method and Description |
|---|---|
static STScatterStyle |
fromValue(String v) |
String |
value() |
static STScatterStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STScatterStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STScatterStyle NONE
public static final STScatterStyle LINE
public static final STScatterStyle LINE_MARKER
public static final STScatterStyle MARKER
public static final STScatterStyle SMOOTH
public static final STScatterStyle SMOOTH_MARKER
public static STScatterStyle[] values()
for (STScatterStyle c : STScatterStyle.values()) System.out.println(c);
public static STScatterStyle 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 value()
public static STScatterStyle fromValue(String v)
Copyright © 2007-2022. All Rights Reserved.