public enum DisplayerType extends Enum<DisplayerType>
Enum Constant and Description |
---|
AREACHART
Area Chart
|
BARCHART
Bar Chart
|
BUBBLECHART
Bubble Chart
|
LINECHART
Line Chart
|
MAP
Map
|
METERCHART
Meter Chart
|
METRIC
Metric
|
PIECHART
Pie Chart
|
SELECTOR
Selector
|
TABLE
Table reports
|
Modifier and Type | Method and Description |
---|---|
static DisplayerType |
getByName(String str) |
List<DisplayerSubType> |
getSubTypes() |
static DisplayerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisplayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayerType BARCHART
public static final DisplayerType PIECHART
public static final DisplayerType AREACHART
public static final DisplayerType LINECHART
public static final DisplayerType BUBBLECHART
public static final DisplayerType METERCHART
public static final DisplayerType TABLE
public static final DisplayerType MAP
public static final DisplayerType SELECTOR
public static final DisplayerType METRIC
public static DisplayerType[] values()
for (DisplayerType c : DisplayerType.values()) System.out.println(c);
public static DisplayerType 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 static DisplayerType getByName(String str)
public List<DisplayerSubType> getSubTypes()
Copyright © 2012–2018 JBoss by Red Hat. All rights reserved.