public final class DoublePredicates
extends java.lang.Object
DoublePredicate interface.| Modifier and Type | Method and Description | 
|---|---|
| static DoublePredicate | and(DoublePredicate this_,
   DoublePredicate other)Returns a composed predicate that represents a short-circuiting logical
 AND of the  this_predicate and another. | 
| static DoublePredicate | negate(DoublePredicate this_)Returns a predicate that represents the logical negation of the  this_predicate. | 
| static DoublePredicate | or(DoublePredicate this_,
  DoublePredicate other)Returns a composed predicate that represents a short-circuiting logical
 OR of the  this_predicate and another. | 
public static DoublePredicate and(DoublePredicate this_, DoublePredicate other)
this_ predicate and another.  When evaluating the composed
 predicate, if the this_ predicate is false, then the other
 predicate is not evaluated.
 Any exceptions thrown during evaluation of either predicate are relayed
 to the caller; if evaluation of the this_ predicate throws an exception, the
 other predicate will not be evaluated.
this_ - a predicate that will be logically-ANDed with the other predicateother - a predicate that will be logically-ANDed with the this_
              predicatethis_ predicate and the other predicatejava.lang.NullPointerException - if this_ is nulljava.lang.NullPointerException - if other is nullpublic static DoublePredicate negate(DoublePredicate this_)
this_
 predicate.this_ - the predicate that will be negatedthis_
 predicatejava.lang.NullPointerException - if this_ is nullpublic static DoublePredicate or(DoublePredicate this_, DoublePredicate other)
this_ predicate and another.  When evaluating the composed
 predicate, if the this_ predicate is true, then the other
 predicate is not evaluated.
 Any exceptions thrown during evaluation of either predicate are relayed
 to the caller; if evaluation of the this_ predicate throws an exception, the
 other predicate will not be evaluated.
this_ - a predicate that will be logically-ORed with the other predicateother - a predicate that will be logically-ORed with the this_
              predicatethis_ predicate and the other predicatejava.lang.NullPointerException - if this_ is nulljava.lang.NullPointerException - if other is null