com.phoenixst.collections
public final class IdentityPredicate extends Object implements Predicate, Serializable
Predicate
which simply tests the evaluate( object )
argument for reference equality with a
specified object.
This is mostly equivalent to the class of the same name in Jakarta Commons-Collections 3.0, except that it exposes the test object used in the constructor. No equivalent exists in version 2.1.
Since: 1.0
Version: $Revision: 1.7 $
Constructor Summary | |
---|---|
IdentityPredicate(Object testObject)
Creates a new IdentityPredicate with the
specified test object. |
Method Summary | |
---|---|
boolean | equals(Object object) |
boolean | evaluate(Object object) |
Object | getTestObject()
Returns the test object being used by this
IdentityPredicate . |
int | hashCode() |
String | toString() |
IdentityPredicate
with the
specified test object.IdentityPredicate
.