| net.sf.jga.fn.comparison.EqualEqual
EqualEqual | public class EqualEqual extends Equality (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(EqualEqual) 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 |
|
|