public static enum PlotView.Flags extends java.lang.Enum<PlotView.Flags>
Enum Constant and Description |
---|
DISABLE_Y_USERSCROLL
User can't change the yTrans
|
DRAW_AXES
Draw x/y axes.
|
DRAW_GRID
Draw a grid in the background.
|
DRAW_MAP
Draw orientation guidelines, depending on Plot-type
|
ENABLE_AUTO_RESET
If the user scrolled & zoomed and then doesn't touch it for 30s, the
autoscroll/zoom reactivates automatically.
|
ENABLE_AUTO_SCROLL
The plot-scroll follows new values.
|
ENABLE_AUTO_ZOOM_X
The plot-zoom automatically adapts to display the entire x-range in
the current y-range.
|
ENABLE_AUTO_ZOOM_Y
The plot-zoom automatically adapts to display the entire y-range in
the current x-range.
|
ENABLE_GESTURES
Enable gesture processing.
|
Modifier and Type | Field and Description |
---|---|
static java.util.EnumSet<PlotView.Flags> |
DEFAULT |
Modifier and Type | Method and Description |
---|---|
static PlotView.Flags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlotView.Flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlotView.Flags DRAW_AXES
public static final PlotView.Flags DRAW_GRID
public static final PlotView.Flags DRAW_MAP
public static final PlotView.Flags ENABLE_GESTURES
public static final PlotView.Flags DISABLE_Y_USERSCROLL
public static final PlotView.Flags ENABLE_AUTO_SCROLL
public static final PlotView.Flags ENABLE_AUTO_ZOOM_Y
public static final PlotView.Flags ENABLE_AUTO_ZOOM_X
public static final PlotView.Flags ENABLE_AUTO_RESET
public static final java.util.EnumSet<PlotView.Flags> DEFAULT
public static PlotView.Flags[] values()
for (PlotView.Flags c : PlotView.Flags.values()) System.out.println(c);
public static PlotView.Flags valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null