All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.predicates.EqualString

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

public final class EqualString
extends Object
implements BinaryPredicate
EqualString is a binary predicate that returns true if the first operand as a string is equal to the second operand as a string.


Constructor Index

 o EqualString()

Method Index

 o execute(Object, Object)
Return true if the first operand is equal to the second operand.

Constructors

 o EqualString
 public EqualString()

Methods

 o execute
 public boolean execute(Object first,
                        Object second)
Return true if the first operand is equal to the second operand.

Returns:
first.toString() == second.toString()

All Packages  Class Hierarchy  This Package  Previous  Next  Index