public class AnyServerEquivalence extends Object implements Equivalence<Object>
Modifier and Type | Field and Description |
---|---|
static Equivalence<Object> |
INSTANCE
Deprecated.
|
Constructor and Description |
---|
AnyServerEquivalence()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
int |
compare(Object obj,
Object otherObj)
Deprecated.
Compares the two given objects for order.
|
boolean |
equals(Object obj,
Object otherObj)
Deprecated.
Indicates whether the objects passed are "equal to" each other.
|
int |
hashCode(Object obj)
Deprecated.
Returns a hash code value for the object passed.
|
boolean |
isComparable(Object obj)
Deprecated.
Returns whether the given object is comparable.
|
String |
toString(Object obj)
Deprecated.
Returns a string representation of the given object.
|
public static final Equivalence<Object> INSTANCE
public int hashCode(Object obj)
Equivalence
Object.hashCode()
, call Object.hashCode()
.hashCode
in interface Equivalence<Object>
obj
- instance to calculate hash code forpublic boolean equals(Object obj, Object otherObj)
Equivalence
Object.equals(Object)
}, call Arrays.equals(Object[], Object[])
.equals
in interface Equivalence<Object>
obj
- to be compared with second parameterotherObj
- to be compared with first parametertrue
if both objects are the same;
false
otherwisepublic String toString(Object obj)
Equivalence
toString
in interface Equivalence<Object>
obj
- whose string representation is to be returnedpublic boolean isComparable(Object obj)
Equivalence
Equivalence.compare(Object, Object)
method.isComparable
in interface Equivalence<Object>
obj
- instance to check if it's comparabletrue
if the object is comparable;
false
otherwisepublic int compare(Object obj, Object otherObj)
Equivalence
compare
in interface Equivalence<Object>
obj
- first object to be comparedotherObj
- second object to be comparedCopyright © 2017 JBoss, a division of Red Hat. All rights reserved.