Package org.jfree.data
Class KeyedValueComparatorType
- java.lang.Object
-
- org.jfree.data.KeyedValueComparatorType
-
- All Implemented Interfaces:
java.io.Serializable
public final class KeyedValueComparatorType extends java.lang.Object implements java.io.Serializable
Used to indicate the type of aKeyedValueComparator
: 'by key' or 'by value'.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static KeyedValueComparatorType
BY_KEY
An object representing 'by key' sorting.static KeyedValueComparatorType
BY_VALUE
An object representing 'by value' sorting.private java.lang.String
name
The name.
-
Constructor Summary
Constructors Modifier Constructor Description private
KeyedValueComparatorType(java.lang.String name)
Private constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Returnstrue
if this object is equal to the specified object, andfalse
otherwise.int
hashCode()
Returns a hash code.java.lang.String
toString()
Returns a string representing the object.
-
-
-
Field Detail
-
BY_KEY
public static final KeyedValueComparatorType BY_KEY
An object representing 'by key' sorting.
-
BY_VALUE
public static final KeyedValueComparatorType BY_VALUE
An object representing 'by value' sorting.
-
name
private java.lang.String name
The name.
-
-
Method Detail
-
toString
public java.lang.String toString()
Returns a string representing the object.- Overrides:
toString
in classjava.lang.Object
- Returns:
- The string.
-
equals
public boolean equals(java.lang.Object o)
Returnstrue
if this object is equal to the specified object, andfalse
otherwise.- Overrides:
equals
in classjava.lang.Object
- Parameters:
o
- the other object.- Returns:
- A boolean.
-
hashCode
public int hashCode()
Returns a hash code.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- A hash code.
-
-