public enum PlotType extends Enum<PlotType>
Enum Constant and Description |
---|
AREA
Area plot type.
|
BAR
Bar plot type.
|
BAR3D
3D bar plot type.
|
LINE
Line plot type.
|
LINE3D
3D line plot type.
|
PIE
Pie plot type.
|
STACKEDBAR
Stacked Bar plot type.
|
STACKEDBAR3D
Stacked 3D bar plot type.
|
XYAREA
xy area plot type.
|
XYLINE3D
xy line3D plot type.
|
XYLINEANDSHAPE
xy line and shape plot type.
|
XYSTEP
xy step plot type.
|
Modifier and Type | Method and Description |
---|---|
static PlotType |
forName(String name) |
AxisType[] |
getDefaultAxisTypes() |
DatasetType |
getDefaultDatasetType() |
String |
getName() |
static PlotType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlotType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlotType LINE
public static final PlotType AREA
public static final PlotType BAR
public static final PlotType STACKEDBAR
public static final PlotType PIE
public static final PlotType BAR3D
public static final PlotType STACKEDBAR3D
public static final PlotType LINE3D
public static final PlotType XYAREA
public static final PlotType XYLINEANDSHAPE
public static final PlotType XYLINE3D
public static final PlotType XYSTEP
public static PlotType[] values()
for (PlotType c : PlotType.values()) System.out.println(c);
public static PlotType 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 getName()
public DatasetType getDefaultDatasetType()
public static PlotType forName(String name)
name
- A plot type.null
.public AxisType[] getDefaultAxisTypes()
Copyright © 2004–2021 XWiki. All rights reserved.