Uses of Interface
java.util.function.BiPredicate
-
Packages that use BiPredicate 软件包 描述 java.net.http HTTP客户端和WebSocket APIjava.nio.file 定义Java虚拟机的接口和类,以访问文件,文件属性和文件系统。java.util.concurrent 实用类通常在并发编程中有用。java.util.function 功能接口为lambda表达式和方法引用提供目标类型。 -
-
Uses of BiPredicate in java.net.http
Methods in java.net.http with parameters of type BiPredicate 变量和类型 方法 描述 static HttpHeaders
HttpHeaders. of(Map<String,List<String>> headerMap, BiPredicate<String,String> filter)
返回给定映射的HTTP标头。 -
Uses of BiPredicate in java.nio.file
Methods in java.nio.file with parameters of type BiPredicate 变量和类型 方法 描述 static Stream<Path>
Files. find(Path start, int maxDepth, BiPredicate<Path,BasicFileAttributes> matcher, FileVisitOption... options)
通过搜索以给定起始文件为根的文件树中的文件,返回Stream
,其中包含Path
。 -
Uses of BiPredicate in java.util.concurrent
Methods in java.util.concurrent with parameters of type BiPredicate 变量和类型 方法 描述 int
SubmissionPublisher. offer(T item, long timeout, TimeUnit unit, BiPredicate<Flow.Subscriber<? super T>,? super T> onDrop)
如果可能,通过异步调用其onNext
方法,阻止任何订阅的资源不可用,直到指定的超时或直到调用者线程被中断,此时给定处理程序(如果可能),将给定项目发布给每个当前订阅者-null)被调用,如果返回true,则重试一次。int
SubmissionPublisher. offer(T item, BiPredicate<Flow.Subscriber<? super T>,? super T> onDrop)
如果可能,通过异步调用其onNext
方法将每个当前订阅者发布给定项目。 -
Uses of BiPredicate in java.util.function
Methods in java.util.function that return BiPredicate 变量和类型 方法 描述 default BiPredicate<T,U>
BiPredicate. and(BiPredicate<? super T,? super U> other)
返回一个组合谓词,表示此谓词和另一个谓词的短路逻辑AND。default BiPredicate<T,U>
BiPredicate. negate()
返回表示此谓词的逻辑否定的谓词。default BiPredicate<T,U>
BiPredicate. or(BiPredicate<? super T,? super U> other)
返回一个组合谓词,表示此谓词与另一个谓词的短路逻辑OR。Methods in java.util.function with parameters of type BiPredicate 变量和类型 方法 描述 default BiPredicate<T,U>
BiPredicate. and(BiPredicate<? super T,? super U> other)
返回一个组合谓词,表示此谓词和另一个谓词的短路逻辑AND。default BiPredicate<T,U>
BiPredicate. or(BiPredicate<? super T,? super U> other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
-