public enum DatasetType extends Enum<DatasetType>
Enum Constant and Description |
---|
CATEGORY
Category dataset type.
|
PIE
Pie dataset type.
|
TIMETABLE_XY
Time table xy dataset type.
|
XY
XY dataset type.
|
Modifier and Type | Method and Description |
---|---|
static DatasetType |
forName(String name) |
String |
getName() |
static DatasetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatasetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatasetType CATEGORY
public static final DatasetType PIE
public static final DatasetType XY
public static final DatasetType TIMETABLE_XY
public static DatasetType[] values()
for (DatasetType c : DatasetType.values()) System.out.println(c);
public static DatasetType 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 static DatasetType forName(String name)
name
- A plot type.null
.Copyright © 2004–2022 XWiki. All rights reserved.