com.phoenixst.collections
public final class InstanceofPredicate extends Object implements Predicate, Serializable
Predicate which tests the evaluate( object ) argument for being an instance of a particular
class.
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. The deserialization process in this version checks for null fields. No equivalent exists in version 2.1.
Since: 1.0
Version: $Revision: 1.10 $
| Constructor Summary | |
|---|---|
| InstanceofPredicate(Class testClass)
Creates a new InstanceofPredicate with the
specified test class. | |
| Method Summary | |
|---|---|
| boolean | equals(Object object) |
| boolean | evaluate(Object object) |
| Class | getTestClass()
Returns the test class being used by this
InstanceofPredicate. |
| int | hashCode() |
| String | toString() |
InstanceofPredicate with the
specified test class.InstanceofPredicate.