Uses of Class
java.lang.FunctionalInterface
-
Packages that use FunctionalInterface 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.io 通过数据流,序列化和文件系统提供系统输入和输出。java.lang 提供对Java编程语言设计至关重要的类。java.net.http HTTP客户端和WebSocket APIjava.nio.file 定义Java虚拟机的接口和类,以访问文件,文件属性和文件系统。java.time.temporal 使用字段和单位以及日期时间调整器访问日期和时间。java.util 包含集合框架,一些国际化支持类,服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,位数组和几个其他实用程序类。java.util.concurrent 实用类通常在并发编程中有用。java.util.function 功能接口为lambda表达式和方法引用提供目标类型。java.util.logging 提供Javaâ“2平台核心日志记录工具的类和接口。java.util.prefs 该软件包允许应用程序存储和检索用户和系统首选项和配置数据。jdk.dynalink.beans 包含普通Java对象的链接器。jdk.dynalink.linker 包含语言运行时所需的接口和类,以实现其自己的语言特定对象模型和类型转换。jdk.nashorn.api.tree Nashorn解析器API提供接口以将ECMAScript源代码表示为抽象语法树(AST)和解析器以解析ECMAScript源脚本。 -
-
Uses of FunctionalInterface in java.awt
Classes in java.awt with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
KeyEventDispatcher
KeyEventDispatcher与当前的KeyboardFocusManager合作,用于定位和分派所有KeyEvent。interface
KeyEventPostProcessor
KeyEventPostProcessor与当前KeyboardFocusManager在所有未使用的KeyEvent的最终解析中协作。 -
Uses of FunctionalInterface in java.io
Classes in java.io with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
FileFilter
抽象路径名的过滤器。interface
FilenameFilter
实现此接口的类的实例用于过滤文件名。interface
ObjectInputFilter
在反序列化期间过滤类,数组长度和图表度量。 -
Uses of FunctionalInterface in java.lang
Classes in java.lang with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
Runnable
Runnable
接口应该由其实例要由线程执行的任何类实现。static interface
Thread.UncaughtExceptionHandler
Thread
由于未捕获的异常而突然终止时调用的处理程序接口。 -
Uses of FunctionalInterface in java.net.http
Classes in java.net.http with annotations of type FunctionalInterface 变量和类型 接口 描述 static interface
HttpResponse.BodyHandler<T>
响应主体的处理程序。 -
Uses of FunctionalInterface in java.nio.file
Classes in java.nio.file with annotations of type FunctionalInterface 变量和类型 接口 描述 static interface
DirectoryStream.Filter<T>
由对象实现的接口,用于决定是应该接受还是过滤目录条目。interface
PathMatcher
由在路径上执行匹配操作的对象实现的接口。 -
Uses of FunctionalInterface in java.time.temporal
Classes in java.time.temporal with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
TemporalAdjuster
调整时态对象的策略。interface
TemporalQuery<R>
查询时态对象的策略。 -
Uses of FunctionalInterface in java.util
Classes in java.util with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
Comparator<T>
比较函数,它对某些对象集合施加 总排序 。 -
Uses of FunctionalInterface in java.util.concurrent
Classes in java.util.concurrent with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
Callable<V>
返回结果并可能抛出异常的任务。static interface
Flow.Publisher<T>
订阅者收到的项目(和相关控制消息)的生产者。 -
Uses of FunctionalInterface in java.util.function
Classes in java.util.function with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
BiConsumer<T,U>
表示接受两个输入参数并且不返回结果的操作。interface
BiFunction<T,U,R>
表示接受两个参数并生成结果的函数。interface
BinaryOperator<T>
表示对两个相同类型的操作数的操作,产生与操作数相同类型的结果。interface
BiPredicate<T,U>
表示两个参数的谓词(布尔值函数)。interface
BooleanSupplier
代表boolean
结果的供应商。interface
Consumer<T>
表示接受单个输入参数并且不返回任何结果的操作。interface
DoubleBinaryOperator
表示对两个double
值操作数的操作,并生成double
值的结果。interface
DoubleConsumer
表示接受单个double
参数并且不返回任何结果的操作。interface
DoubleFunction<R>
表示接受双值参数并生成结果的函数。interface
DoublePredicate
表示一个double
参数的谓词(布尔值函数)。interface
DoubleSupplier
代表double
结果的供应商。interface
DoubleToIntFunction
表示接受双值参数并生成int值结果的函数。interface
DoubleToLongFunction
表示接受双值参数并生成长值结果的函数。interface
DoubleUnaryOperator
表示对单个double
值操作数的操作,该操作数生成double
值的结果。interface
Function<T,R>
表示接受一个参数并生成结果的函数。interface
IntBinaryOperator
表示对两个int
值操作数的操作,并生成int
值的结果。interface
IntConsumer
表示接受单个int
值的参数并且不返回任何结果的操作。interface
IntFunction<R>
表示接受int值参数并生成结果的函数。interface
IntPredicate
表示一个int
参数的谓词(布尔值函数)。interface
IntSupplier
代表int
结果的供应商。interface
IntToDoubleFunction
表示接受int值参数并生成双值结果的函数。interface
IntToLongFunction
表示接受int值参数并生成长值结果的函数。interface
IntUnaryOperator
表示对单个int
值操作数的操作,该操作数生成int
值的结果。interface
LongBinaryOperator
表示对两个long
值的操作数进行的操作,并生成long
值的结果。interface
LongConsumer
表示接受单个long
参数并且不返回任何结果的操作。interface
LongFunction<R>
表示接受长值参数并生成结果的函数。interface
LongPredicate
表示一个long
值参数的谓词(布尔值函数)。interface
LongSupplier
代表long
结果的供应商。interface
LongToDoubleFunction
表示接受长值参数并生成双值结果的函数。interface
LongToIntFunction
表示接受长值参数并生成int值结果的函数。interface
LongUnaryOperator
表示对单个long
值操作数的操作,该操作数生成long
值的结果。interface
ObjDoubleConsumer<T>
表示接受对象值和double
参数的操作,并且不返回任何结果。interface
ObjIntConsumer<T>
表示接受对象值和int
参数的操作,并且不返回任何结果。interface
ObjLongConsumer<T>
表示接受对象值和long
参数的操作,并且不返回任何结果。interface
Predicate<T>
表示一个参数的谓词(布尔值函数)。interface
Supplier<T>
代表结果的供应商。interface
ToDoubleBiFunction<T,U>
表示接受两个参数并生成双值结果的函数。interface
ToDoubleFunction<T>
表示生成双值结果的函数。interface
ToIntBiFunction<T,U>
表示接受两个参数并生成int值结果的函数。interface
ToIntFunction<T>
表示生成int值结果的函数。interface
ToLongBiFunction<T,U>
表示接受两个参数并生成长值结果的函数。interface
ToLongFunction<T>
表示生成长值结果的函数。interface
UnaryOperator<T>
表示对单个操作数的操作,该操作生成与其操作数相同类型的结果。 -
Uses of FunctionalInterface in java.util.logging
Classes in java.util.logging with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
Filter
除了日志级别提供的控制之外,过滤器还可用于对记录的内容进行精细控制。 -
Uses of FunctionalInterface in java.util.prefs
Classes in java.util.prefs with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
PreferenceChangeListener
用于接收偏好更改事件的侦听器。 -
Uses of FunctionalInterface in jdk.dynalink.beans
Classes in jdk.dynalink.beans with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
MissingMemberHandlerFactory
用于创建方法句柄的工厂,用于链接BeansLinker
中缺少的成员行为。 -
Uses of FunctionalInterface in jdk.dynalink.linker
Classes in jdk.dynalink.linker with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
GuardedInvocationTransformer
用于将一个受保护调用转换为另一个受保护调用的对象的接口。interface
MethodHandleTransformer
描述转换方法处理的操作的通用接口。interface
MethodTypeConversionStrategy
表示将方法句柄转换为新类型的策略的对象的接口。 -
Uses of FunctionalInterface in jdk.nashorn.api.tree
Classes in jdk.nashorn.api.tree with annotations of type FunctionalInterface 变量和类型 接口 描述 interface
DiagnosticListener
Deprecated, for removal: This API element is subject to removal in a future version.Nashorn JavaScript script engine and APIs, and the jjs tool are deprecated with the intent to remove them in a future release.
-