Package org.jfree.chart.plot
Class PlotOrientation
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
FieldsModifier and TypeFieldDescriptionstatic final PlotOrientationFor a plot where the range axis is horizontal.private StringThe name.private static final longFor serialization.static final PlotOrientationFor a plot where the range axis is vertical. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturnstrueif this object is equal to the specified object, andfalseotherwise.inthashCode()Returns a hash code for this instance.booleanReturnstrueif this orientation isHORIZONTAL, andfalseotherwise.booleanReturnstrueif this orientation isVERTICAL, andfalseotherwise.private ObjectEnsures that serialization returns the unique instances.toString()Returns a string representing the object.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor serialization.- See Also:
-
HORIZONTAL
For a plot where the range axis is horizontal. -
VERTICAL
For a plot where the range axis is vertical. -
name
The name.
-
-
Constructor Details
-
PlotOrientation
Private constructor.- Parameters:
name- the name.
-
-
Method Details
-
isHorizontal
public boolean isHorizontal()Returnstrueif this orientation isHORIZONTAL, andfalseotherwise.- Returns:
- A boolean.
-
isVertical
public boolean isVertical()Returnstrueif this orientation isVERTICAL, andfalseotherwise.- Returns:
- A boolean.
-
toString
Returns a string representing the object. -
equals
Returnstrueif this object is equal to the specified object, andfalseotherwise. -
hashCode
public int hashCode()Returns a hash code for this instance. -
readResolve
Ensures that serialization returns the unique instances.- Returns:
- The object.
- Throws:
ObjectStreamException- if there is a problem.
-