| JGL - The Generic Collection Library for Java |
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.
-
EqualString()
-
-
execute(Object, Object)
- Return true if the first operand is equal to the second operand.
EqualString
public EqualString()
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