java.lang.Object
org.jfree.chart.plot.PlotOrientation
- All Implemented Interfaces:
Serializable
Used to indicate the orientation (horizontal or vertical) of a 2D plot.
It is the direction of the y-axis that is the determinant (a conventional
plot has a vertical y-axis).
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final PlotOrientation
For a plot where the range axis is horizontal.static final PlotOrientation
For a plot where the range axis is vertical. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returnstrue
if this object is equal to the specified object, andfalse
otherwise.int
hashCode()
Returns a hash code for this instance.boolean
Returnstrue
if this orientation isHORIZONTAL
, andfalse
otherwise.boolean
Returnstrue
if this orientation isVERTICAL
, andfalse
otherwise.toString()
Returns a string representing the object.
-
Field Details
-
HORIZONTAL
For a plot where the range axis is horizontal. -
VERTICAL
For a plot where the range axis is vertical.
-
-
Method Details
-
isHorizontal
public boolean isHorizontal()Returnstrue
if this orientation isHORIZONTAL
, andfalse
otherwise.- Returns:
- A boolean.
-
isVertical
public boolean isVertical()Returnstrue
if this orientation isVERTICAL
, andfalse
otherwise.- Returns:
- A boolean.
-
toString
Returns a string representing the object. -
equals
Returnstrue
if this object is equal to the specified object, andfalse
otherwise. -
hashCode
public int hashCode()Returns a hash code for this instance.
-