Package org.jfree.data
Class DomainOrder
java.lang.Object
org.jfree.data.DomainOrder
- All Implemented Interfaces:
Serializable
Used to indicate sorting order if any (ascending, descending or none).
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DomainOrder
Ascending order.static final DomainOrder
Descending order.private String
The name.static final DomainOrder
No order.private static final long
For serialization. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returnstrue
if this object is equal to the specified object, andfalse
otherwise.int
hashCode()
Returns a hash code value for the object.private Object
Ensures that serialization returns the unique instances.toString()
Returns a string representing the object.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor serialization.- See Also:
-
NONE
No order. -
ASCENDING
Ascending order. -
DESCENDING
Descending order. -
name
The name.
-
-
Constructor Details
-
DomainOrder
Private constructor.- Parameters:
name
- the name.
-
-
Method Details
-
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 value for the object. -
readResolve
Ensures that serialization returns the unique instances.- Returns:
- The object.
- Throws:
ObjectStreamException
- if there is a problem.
-