All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.predicates.NotIdenticalTo

java.lang.Object
   |
   +----COM.objectspace.jgl.predicates.NotIdenticalTo

public final class NotIdenticalTo
extends Object
implements BinaryPredicate
NotIdenticalTo is a binary predicate that returns true if the first operand is not the same object second operand using the standard Java != operator.


Constructor Index

 o NotIdenticalTo()

Method Index

 o execute(Object, Object)
Compare two objects for non-identity.

Constructors

 o NotIdenticalTo
 public NotIdenticalTo()

Methods

 o execute
 public boolean execute(Object first,
                        Object second)
Compare two objects for non-identity.

Parameters:
first - The first operand.
second - The second operand.
Returns:
true if the operands are not the same object according to the !=.

All Packages  Class Hierarchy  This Package  Previous  Next  Index