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 |
/* |
16748 | 2 |
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
16011
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 one {@code int}-valued |
31 |
* argument. This is the {@code int}-consuming primitive type specialization of |
|
32 |
* {@link Predicate}. |
|
33 |
* |
|
34 |
* <p>This is a <a href="package-summary.html">functional interface</a> |
|
35 |
* whose functional method is {@link #test(int)}. |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
36 |
* |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
37 |
* @see Predicate |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
38 |
* @since 1.8 |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
39 |
*/ |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
40 |
@FunctionalInterface |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
41 |
public interface IntPredicate { |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
42 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
43 |
/** |
19040 | 44 |
* Evaluates this predicate on the given argument. |
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
45 |
* |
19040 | 46 |
* @param value the input argument |
47 |
* @return {@code true} if the input argument matches the predicate, |
|
48 |
* otherwise {@code false} |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
49 |
*/ |
17695
032254f2467b
8004015: Additional static and instance utils for functional interfaces.
mduigou
parents:
16748
diff
changeset
|
50 |
boolean test(int value); |
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
51 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
52 |
/** |
19040 | 53 |
* Returns a composed predicate that represents a short-circuiting logical |
54 |
* AND of this predicate and another. When evaluating the composed |
|
55 |
* predicate, if this predicate is {@code false}, then the {@code other} |
|
56 |
* predicate is not evaluated. |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
57 |
* |
19040 | 58 |
* <p>Any exceptions thrown during evaluation of either predicate are relayed |
59 |
* to the caller; if evaluation of this predicate throws an exception, the |
|
60 |
* {@code other} predicate will not be evaluated. |
|
17695
032254f2467b
8004015: Additional static and instance utils for functional interfaces.
mduigou
parents:
16748
diff
changeset
|
61 |
* |
19040 | 62 |
* @param other a predicate that will be logically-ANDed with this |
63 |
* predicate |
|
64 |
* @return a composed predicate that represents the short-circuiting logical |
|
65 |
* AND of this predicate and the {@code other} predicate |
|
66 |
* @throws NullPointerException if other is null |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
67 |
*/ |
19040 | 68 |
default IntPredicate and(IntPredicate other) { |
69 |
Objects.requireNonNull(other); |
|
70 |
return (value) -> test(value) && other.test(value); |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
71 |
} |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
72 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
73 |
/** |
19040 | 74 |
* Returns a predicate that represents the logical negation of this |
75 |
* predicate. |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
76 |
* |
19040 | 77 |
* @return a predicate that represents the logical negation of this |
17695
032254f2467b
8004015: Additional static and instance utils for functional interfaces.
mduigou
parents:
16748
diff
changeset
|
78 |
* predicate |
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
79 |
*/ |
17695
032254f2467b
8004015: Additional static and instance utils for functional interfaces.
mduigou
parents:
16748
diff
changeset
|
80 |
default IntPredicate negate() { |
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
81 |
return (value) -> !test(value); |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
82 |
} |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
83 |
|
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
84 |
/** |
19040 | 85 |
* Returns a composed predicate that represents a short-circuiting logical |
86 |
* OR of this predicate and another. When evaluating the composed |
|
87 |
* predicate, if this predicate is {@code true}, then the {@code other} |
|
88 |
* predicate is not evaluated. |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
89 |
* |
19040 | 90 |
* <p>Any exceptions thrown during evaluation of either predicate are relayed |
91 |
* to the caller; if evaluation of this predicate throws an exception, the |
|
92 |
* {@code other} predicate will not be evaluated. |
|
17695
032254f2467b
8004015: Additional static and instance utils for functional interfaces.
mduigou
parents:
16748
diff
changeset
|
93 |
* |
19040 | 94 |
* @param other a predicate that will be logically-ORed with this |
95 |
* predicate |
|
96 |
* @return a composed predicate that represents the short-circuiting logical |
|
97 |
* OR of this predicate and the {@code other} predicate |
|
98 |
* @throws NullPointerException if other is null |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
99 |
*/ |
19040 | 100 |
default IntPredicate or(IntPredicate other) { |
101 |
Objects.requireNonNull(other); |
|
102 |
return (value) -> test(value) || other.test(value); |
|
16011
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
103 |
} |
890a7ed97f6c
8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents:
diff
changeset
|
104 |
} |