All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.predicates.NotEqualTo

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

public final class NotEqualTo
extends Object
implements BinaryPredicate
NotEqualTo is a binary predicate that returns false if the first operand is equal to the second operand using the standard Java equals() method.

See Also:
EqualTo

Constructor Index

 o NotEqualTo()

Method Index

 o execute(Object, Object)
Compare two objects for inequality.

Constructors

 o NotEqualTo
 public NotEqualTo()

Methods

 o execute
 public boolean execute(Object first,
                        Object second)
Compare two objects for inequality.

Parameters:
first - The first operand.
second - The second operand.
Returns:
false if the operands are equal according to the standard Java equals() method.

All Packages  Class Hierarchy  This Package  Previous  Next  Index