Package org.dashbuilder.displayer
Enum DisplayerSubType
- java.lang.Object
-
- java.lang.Enum<DisplayerSubType>
-
- org.dashbuilder.displayer.DisplayerSubType
-
- All Implemented Interfaces:
Serializable,Comparable<DisplayerSubType>
public enum DisplayerSubType extends Enum<DisplayerSubType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AREAAREA_STACKEDBARBAR_STACKEDCOLUMNCOLUMN_STACKEDDONUTLINEMAP_MARKERSMAP_REGIONSMETRIC_CARDMETRIC_CARD2METRIC_PLAIN_TEXTMETRIC_QUOTAPIEPIE_3DSELECTOR_DROPDOWNSELECTOR_LABELSSELECTOR_SLIDERSMOOTH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DisplayerSubTypegetByName(String str)static DisplayerSubTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DisplayerSubType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINE
public static final DisplayerSubType LINE
-
SMOOTH
public static final DisplayerSubType SMOOTH
-
AREA
public static final DisplayerSubType AREA
-
AREA_STACKED
public static final DisplayerSubType AREA_STACKED
-
BAR
public static final DisplayerSubType BAR
-
BAR_STACKED
public static final DisplayerSubType BAR_STACKED
-
COLUMN
public static final DisplayerSubType COLUMN
-
COLUMN_STACKED
public static final DisplayerSubType COLUMN_STACKED
-
PIE
public static final DisplayerSubType PIE
-
PIE_3D
public static final DisplayerSubType PIE_3D
-
DONUT
public static final DisplayerSubType DONUT
-
MAP_REGIONS
public static final DisplayerSubType MAP_REGIONS
-
MAP_MARKERS
public static final DisplayerSubType MAP_MARKERS
-
METRIC_CARD
public static final DisplayerSubType METRIC_CARD
-
METRIC_CARD2
public static final DisplayerSubType METRIC_CARD2
-
METRIC_PLAIN_TEXT
public static final DisplayerSubType METRIC_PLAIN_TEXT
-
METRIC_QUOTA
public static final DisplayerSubType METRIC_QUOTA
-
SELECTOR_DROPDOWN
public static final DisplayerSubType SELECTOR_DROPDOWN
-
SELECTOR_SLIDER
public static final DisplayerSubType SELECTOR_SLIDER
-
SELECTOR_LABELS
public static final DisplayerSubType SELECTOR_LABELS
-
-
Method Detail
-
values
public static DisplayerSubType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DisplayerSubType c : DisplayerSubType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DisplayerSubType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getByName
public static DisplayerSubType getByName(String str)
-
-