author | psandoz |
Tue, 13 Aug 2013 11:16:37 +0200 | |
changeset 19424 | c4524285927f |
parent 19040 | 7b25fde2a4ed |
permissions | -rw-r--r-- |
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
1 |
/* |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
2 |
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
4 |
* |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. Oracle designates this |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
8 |
* particular file as subject to the "Classpath" exception as provided |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
10 |
* |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
15 |
* accompanied this code). |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
16 |
* |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License version |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
20 |
* |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
22 |
* or visit www.oracle.com if you need additional information or have any |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
23 |
* questions. |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
24 |
*/ |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
25 |
package java.util.function; |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
26 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
27 |
import java.util.Objects; |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
28 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
29 |
/** |
19040 | 30 |
* Represents a predicate (boolean-valued function) of two arguments. This is |
31 |
* the two-arity specialization of {@link Predicate}. |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
32 |
* |
19040 | 33 |
* <p>This is a <a href="package-summary.html">functional interface</a> |
34 |
* whose functional method is {@link #test(Object, Object)}. |
|
35 |
* |
|
36 |
* @param <T> the type of the first argument to the predicate |
|
37 |
* @param <U> the type of the second argument the predicate |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
38 |
* |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
39 |
* @see Predicate |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
40 |
* @since 1.8 |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
41 |
*/ |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
42 |
@FunctionalInterface |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
43 |
public interface BiPredicate<T, U> { |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
44 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
45 |
/** |
19040 | 46 |
* Evaluates this predicate on the given arguments. |
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
47 |
* |
19040 | 48 |
* @param t the first input argument |
49 |
* @param u the second input argument |
|
50 |
* @return {@code true} if the input arguments match the predicate, |
|
51 |
* otherwise {@code false} |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
52 |
*/ |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
53 |
boolean test(T t, U u); |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
54 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
55 |
/** |
19040 | 56 |
* Returns a composed predicate that represents a short-circuiting logical |
57 |
* AND of this predicate and another. When evaluating the composed |
|
58 |
* predicate, if this predicate is {@code false}, then the {@code other} |
|
59 |
* predicate is not evaluated. |
|
60 |
* |
|
61 |
* <p>Any exceptions thrown during evaluation of either predicate are relayed |
|
62 |
* to the caller; if evaluation of this predicate throws an exception, the |
|
63 |
* {@code other} predicate will not be evaluated. |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
64 |
* |
19040 | 65 |
* @param other a predicate that will be logically-ANDed with this |
66 |
* predicate |
|
67 |
* @return a composed predicate that represents the short-circuiting logical |
|
68 |
* AND of this predicate and the {@code other} predicate |
|
69 |
* @throws NullPointerException if other is null |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
70 |
*/ |
19040 | 71 |
default BiPredicate<T, U> and(BiPredicate<? super T, ? super U> other) { |
72 |
Objects.requireNonNull(other); |
|
73 |
return (T t, U u) -> test(t, u) && other.test(t, u); |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
74 |
} |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
75 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
76 |
/** |
19040 | 77 |
* Returns a predicate that represents the logical negation of this |
78 |
* predicate. |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
79 |
* |
19040 | 80 |
* @return a predicate that represents the logical negation of this |
17695
032254f2467b
8004015: Additional static and instance utils for functional interfaces.
mduigou
parents:
16011
diff
changeset
|
81 |
* predicate |
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
82 |
*/ |
17695
032254f2467b
8004015: Additional static and instance utils for functional interfaces.
mduigou
parents:
16011
diff
changeset
|
83 |
default BiPredicate<T, U> negate() { |
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
84 |
return (T t, U u) -> !test(t, u); |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
85 |
} |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
86 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
87 |
/** |
19040 | 88 |
* Returns a composed predicate that represents a short-circuiting logical |
89 |
* OR of this predicate and another. When evaluating the composed |
|
90 |
* predicate, if this predicate is {@code true}, then the {@code other} |
|
91 |
* predicate is not evaluated. |
|
92 |
* |
|
93 |
* <p>Any exceptions thrown during evaluation of either predicate are relayed |
|
94 |
* to the caller; if evaluation of this predicate throws an exception, the |
|
95 |
* {@code other} predicate will not be evaluated. |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
96 |
* |
19040 | 97 |
* @param other a predicate that will be logically-ORed with this |
98 |
* predicate |
|
99 |
* @return a composed predicate that represents the short-circuiting logical |
|
100 |
* OR of this predicate and the {@code other} predicate |
|
101 |
* @throws NullPointerException if other is null |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
102 |
*/ |
19040 | 103 |
default BiPredicate<T, U> or(BiPredicate<? super T, ? super U> other) { |
104 |
Objects.requireNonNull(other); |
|
105 |
return (T t, U u) -> test(t, u) || other.test(t, u); |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
106 |
} |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
107 |
} |