All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.predicates.GreaterEqualString

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

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


Constructor Index

 o GreaterEqualString()

Method Index

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

Constructors

 o GreaterEqualString
 public GreaterEqualString()

Methods

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

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index