public enum Feature extends Enum<Feature>
Options class may support each feature
listed here. If an interpreter does not support a certain feature, it should
throw an exception if the user tries to use it.| Enum Constant and Description |
|---|
DRILLDOWN
Support of
DrilldownPoint. |
GLOBAL
Support of the
Global option class. |
INTERACTION
Support of
InteractionFunction. |
LIVEDATA
Support of
LiveDataSeries. |
SELECTION
Support of
SelectionFunction. |
| Modifier and Type | Method and Description |
|---|---|
Class<?> |
getFeatureClass() |
static Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Feature DRILLDOWN
DrilldownPoint.public static final Feature LIVEDATA
LiveDataSeries.public static final Feature INTERACTION
InteractionFunction.public static final Feature SELECTION
SelectionFunction.public static Feature[] values()
for (Feature c : Feature.values()) System.out.println(c);
public static Feature 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 Class<?> getFeatureClass()
Copyright © 2016. All rights reserved.