All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.predicates.LessEqualString

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

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


Constructor Index

 o LessEqualString()

Method Index

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

Constructors

 o LessEqualString
 public LessEqualString()

Methods

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

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index