Package eu.webtoolkit.jwt.chart
Enum Class InteractiveAction
- All Implemented Interfaces:
Serializable
,Comparable<InteractiveAction>
,Constable
Enumeration of mouse wheel actions for interactive charts.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPan y-axis on vertical scroll, x-axis on horizontal scroll.Pan x-axis.Pan y-axis.Zoom y-axis on vertical scroll, x-axis on horizontal scroll.Zoom x-axis.Zoom along both x and y-axes.Zoom y-axis. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Returns the numerical representation of this enum.static InteractiveAction
Returns the enum constant of this class with the specified name.static InteractiveAction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ZoomX
Zoom x-axis. -
ZoomY
Zoom y-axis. -
ZoomXY
Zoom along both x and y-axes. -
ZoomMatching
Zoom y-axis on vertical scroll, x-axis on horizontal scroll. -
PanX
Pan x-axis. -
PanY
Pan y-axis. -
PanMatching
Pan y-axis on vertical scroll, x-axis on horizontal scroll.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue()Returns the numerical representation of this enum.
-