public static enum PanZoom.ZoomLimit extends java.lang.Enum<PanZoom.ZoomLimit>
Enum Constant and Description |
---|
MIN_TICKS
Additionally to the outer bounds if plot.StepModel defines a value based increment
make sure at least one tick is visible by not zooming in further.
|
OUTER
Do not zoom outside the plots outer bounds, if they are defined.
|
Modifier and Type | Method and Description |
---|---|
static PanZoom.ZoomLimit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PanZoom.ZoomLimit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PanZoom.ZoomLimit OUTER
public static final PanZoom.ZoomLimit MIN_TICKS
public static PanZoom.ZoomLimit[] values()
for (PanZoom.ZoomLimit c : PanZoom.ZoomLimit.values()) System.out.println(c);
public static PanZoom.ZoomLimit 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