public static enum XYPlot.XYNavigationDirection extends Enum<XYPlot.XYNavigationDirection> implements NavigationDirection
Enum Constant and Description |
---|
ARBITRARY
Value for zooming and panning in all direction.
|
HORIZONTAL
Value for zooming and panning horizontally.
|
VERTICAL
Value for zooming and panning vertically.
|
Modifier and Type | Method and Description |
---|---|
String[] |
getAxesNames()
Returns the names of the axes that have the direction described by
this object.
|
static XYPlot.XYNavigationDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XYPlot.XYNavigationDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XYPlot.XYNavigationDirection HORIZONTAL
public static final XYPlot.XYNavigationDirection VERTICAL
public static final XYPlot.XYNavigationDirection ARBITRARY
public static XYPlot.XYNavigationDirection[] values()
for (XYPlot.XYNavigationDirection c : XYPlot.XYNavigationDirection.values()) System.out.println(c);
public static XYPlot.XYNavigationDirection 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 String[] getAxesNames()
Copyright © 2009-2013. All Rights Reserved.