Package org.apache.commons.lang3.compare
Class ObjectToStringComparator
- java.lang.Object
-
- org.apache.commons.lang3.compare.ObjectToStringComparator
-
- All Implemented Interfaces:
Serializable
,Comparator<Object>
public final class ObjectToStringComparator extends Object implements Comparator<Object>, Serializable
Compares Object'sObject.toString()
values. This class is stateless.- Since:
- 3.10
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static ObjectToStringComparator
INSTANCE
Singleton instance.
-
Constructor Summary
Constructors Constructor Description ObjectToStringComparator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compare(Object o1, Object o2)
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
-
-
-
Field Detail
-
INSTANCE
public static final ObjectToStringComparator INSTANCE
Singleton instance. This class is stateless.
-
-
Method Detail
-
compare
public int compare(Object o1, Object o2)
- Specified by:
compare
in interfaceComparator<Object>
-
-