Returns a predicate that represents the logical negation of this predicate.
negate
has the following syntax.
default DoublePredicate negate()
The following example shows how to use negate
.
import java.util.function.DoublePredicate; /*from ww w . jav a 2 s .c o m*/ public class Main { public static void main(String[] args) { DoublePredicate dp = (d) -> d > 0; System.out.println(dp.test(0.5)); System.out.println(dp.negate().test(0.5)); } }
The code above generates the following result.