| net.sf.jga.fn.comparison.NotEqualEqual
NotEqualEqual | public class NotEqualEqual extends BinaryPredicate (Code) | | Binary Predicate that returns TRUE for object arguments x and
y when x != y using the built-in != operator.
Copyright © 2002-2005 David A. Hall
author: David A. Hall |
serialVersionUID | final static long serialVersionUID(Code) | | |
accept | public void accept(net.sf.jga.fn.Visitor v)(Code) | | Calls the Visitor's visit(NotEqualEqual) method, if it
implements the nested Visitor interface.
|
fn | public Boolean fn(T x, T y)(Code) | | Given arguments x and y, returns x != y.
x != y |
|
|