| net.sf.jga.fn.logical.UnaryNegate
UnaryNegate | public class UnaryNegate extends UnaryPredicate (Code) | | Unary Predicate that logically negates the result of a child predicate.
Returns true when child predicate p returns false given object
argument x.
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(UnaryNegate) method, if it
implements the nested Visitor interface.
|
fn | public Boolean fn(T x)(Code) | | Given argument x, returns true when child
predicate p returns false for x, otherwise returns true.
!(p.p(x)) |
|
|