All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.objectspace.jgl.LessInteger

java.lang.Object
   |
   +----COM.objectspace.jgl.LessInteger

public class LessInteger
extends Object
implements BinaryPredicate
Note: LessInteger is deprecated.

LessInteger is a binary predicate that assumes that both of its operands are instances of Integer and returns true if the first operand is less than the second operand.

See Also:
LessNumber

Constructor Index

 o LessInteger()

Method Index

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

Constructors

 o LessInteger
  public LessInteger()

Methods

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

Parameters:
first - The first operand, which must be an instance of Integer.
second - The second operand, which must be an instance of Integer.
Returns:
first < second

All Packages  Class Hierarchy  This Package  Previous  Next  Index