| |
|
| java.lang.Object org.jfree.chart.axis.AxisLocation
AxisLocation | final public class AxisLocation implements Serializable(Code) | | Used to indicate the location of an axis on a 2D plot, prior to knowing the
orientation of the plot.
|
Method Summary | |
public boolean | equals(Object obj) Returns true if this object is equal to the specified
object, and false otherwise.
Parameters: obj - the other object (null permitted). | public AxisLocation | getOpposite() Returns the location that is opposite to this location. | public static AxisLocation | getOpposite(AxisLocation location) Returns the location that is opposite to the supplied location.
Parameters: location - the location (null not permitted). | public String | toString() Returns a string representing the object. |
BOTTOM_OR_LEFT | final public static AxisLocation BOTTOM_OR_LEFT(Code) | | Axis at the bottom or left.
|
BOTTOM_OR_RIGHT | final public static AxisLocation BOTTOM_OR_RIGHT(Code) | | Axis at the bottom or right.
|
equals | public boolean equals(Object obj)(Code) | | Returns true if this object is equal to the specified
object, and false otherwise.
Parameters: obj - the other object (null permitted). A boolean. |
getOpposite | public AxisLocation getOpposite()(Code) | | Returns the location that is opposite to this location.
The opposite location. since: 1.0.5 |
getOpposite | public static AxisLocation getOpposite(AxisLocation location)(Code) | | Returns the location that is opposite to the supplied location.
Parameters: location - the location (null not permitted). The opposite location. |
toString | public String toString()(Code) | | Returns a string representing the object.
The string. |
|
|
|