修改注释。
parent
07d9b789b0
commit
be3caf14ec
|
@ -35,7 +35,7 @@ public class Predicates {
|
||||||
* 将 lambda 表达式或者方法引用指明为对应类型的 {@link Predicate} 对象。
|
* 将 lambda 表达式或者方法引用指明为对应类型的 {@link Predicate} 对象。
|
||||||
* 如将 {@code Objects::nonNull} 明确地指定为 {@code Predicate<String>},
|
* 如将 {@code Objects::nonNull} 明确地指定为 {@code Predicate<String>},
|
||||||
* 使之可以链式调用 {@link Predicate#and(Predicate)}、{@link Predicate#or(Predicate)}
|
* 使之可以链式调用 {@link Predicate#and(Predicate)}、{@link Predicate#or(Predicate)}
|
||||||
* 等方法,连接其它 {@code Predicate<? super String>} 对象。
|
* 等方法,连接其它 {@code Predicate<? super T>} 对象。
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* Predicate<String> predicate = Predicates.<String>of(Objects::nonNull)
|
* Predicate<String> predicate = Predicates.<String>of(Objects::nonNull)
|
||||||
|
|
Loading…
Reference in New Issue