| net.sf.jga.fn.comparison.GreaterEqual
GreaterEqual | public class GreaterEqual extends BinaryPredicate (Code) | | Binary Predicate that returns TRUE for arguments x and y when
x >= y. The comparison is performed using a comparator supplied at
construction time, although a default comparator will be used if the nested
Comparable class' default constructor is used.
The behaviour of this class in the presence of null arguments is left to the
implementation of the specific Comparator, however it is generally safe to
assume that using null arguments will cause a NullPointerException to be
thrown.
To serialize a GreaterEqual, the comparator passed at construction must be
Serializable.
Copyright © 2002-2005 David A. Hall
author: David A. Hall |
Inner Class :public static class Comparable extends GreaterEqual | |
serialVersionUID | final static long serialVersionUID(Code) | | |
accept | public void accept(net.sf.jga.fn.Visitor v)(Code) | | Calls the Visitor's visit(GreaterEqual) method, if it
implements the nested Visitor interface.
|
getComparator | public Comparator<? super T> getComparator()(Code) | | Returns the comparator in use by this functor
the comparator in use by this functor |
|
|