Uses of Class
java.lang.FunctionalInterface
-
Packages that use FunctionalInterface 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.io 通过数据流,序列化和文件系统提供系统输入和输出。java.lang 提供对Java编程语言设计至关重要的类。java.nio.file 定义Java虚拟机访问文件,文件属性和文件系统的接口和类。java.time.temporal 使用字段和单位访问日期和时间,以及日期时间调整器。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.concurrent 实用程序类通常用于并发编程。java.util.function 功能界面提供了lambda表达式和方法引用的目标类型。java.util.logging 提供Java¢2平台核心日志记录工具的类和接口。java.util.prefs 该软件包允许应用程序存储和检索用户和系统首选项和配置数据。javafx.animation 提供一组类,便于使用基于过渡的动画。javafx.beans 包javafx.beans
包含定义最通用形式的可观察性的接口。javafx.beans.value 包javafx.beans.value
包含两个基本接口ObservableValue
和WritableValue
及其所有子接口。javafx.collections 包含基本的JavaFX集合和集合实用程序javafx.event 为FX事件,交付和处理提供基本框架。javafx.util 包含各种实用程序和助手类。jdk.dynalink.beans 包含普通Java对象的链接器。jdk.dynalink.linker 包含语言运行时所需的接口和类,以实现自己的特定于语言的对象模型和类型转换。jdk.incubator.http 高级HTTP和WebSocket APIjdk.nashorn.api.tree Nashorn解析器API提供了将ECMAScript源代码表示为抽象语法树(AST)和解析器来解析ECMAScript源脚本的接口。 -
-
Uses of FunctionalInterface in java.awt
Classes in java.awt with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
KeyEventDispatcher
KeyEventDispatcher与所有KeyEvents的目标和调度中的当前KeyboardFocusManager配合使用。interface
KeyEventPostProcessor
KeyEventPostProcessor与所有未消耗的KeyEvents的最终分辨率中的当前KeyboardFocusManager配合使用。 -
Uses of FunctionalInterface in java.io
Classes in java.io with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
FileFilter
抽象路径名的过滤器。interface
FilenameFilter
用于实现此接口的类的实例用于过滤文件名。interface
ObjectInputFilter
反序列化过程中过滤类,数组长度和图形指标。 -
Uses of FunctionalInterface in java.lang
Classes in java.lang with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
Runnable
Runnable
接口应由实例由线程执行的任何类实现。static interface
Thread.UncaughtExceptionHandler
当Thread
由于未捕获的异常而突然终止时,处理程序的接口被调用。 -
Uses of FunctionalInterface in java.nio.file
Classes in java.nio.file with annotations of type FunctionalInterface Modifier and Type 接口 描述 static interface
DirectoryStream.Filter<T>
由对象执行的接口,用于确定是否应接受或过滤目录条目。interface
PathMatcher
由对路径执行匹配操作的对象实现的接口。 -
Uses of FunctionalInterface in java.time.temporal
Classes in java.time.temporal with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
TemporalAdjuster
调整时间对象的策略。interface
TemporalQuery<R>
查询时间对象的策略。 -
Uses of FunctionalInterface in java.util
Classes in java.util with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
Comparator<T>
比较功能,对一些对象的集合施加了一个 整体排序 。 -
Uses of FunctionalInterface in java.util.concurrent
Classes in java.util.concurrent with annotations of type FunctionalInterface Modifier and Type 接口 描述 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 Modifier and Type 接口 描述 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 Modifier and Type 接口 描述 interface
Filter
可以使用过滤器对超出记录级别提供的控制范围内的记录进行细粒度控制。 -
Uses of FunctionalInterface in java.util.prefs
Classes in java.util.prefs with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
PreferenceChangeListener
用于接收偏好更改事件的侦听器。 -
Uses of FunctionalInterface in javafx.animation
Classes in javafx.animation with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
Interpolatable<T>
可以插值的值。 -
Uses of FunctionalInterface in javafx.beans
Classes in javafx.beans with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
InvalidationListener
一个InvalidationListener
每当被通知Observable
变为无效。 -
Uses of FunctionalInterface in javafx.beans.value
Classes in javafx.beans.value with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
ChangeListener<T>
甲ChangeListener
通知每当的值ObservableValue
种变化。 -
Uses of FunctionalInterface in javafx.collections
Classes in javafx.collections with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
ListChangeListener<E>
接收ObservableList更改通知的接口。interface
MapChangeListener<K,V>
接收到ObservableMap更改通知的接口。interface
SetChangeListener<E>
接收ObservableSet更改通知的接口。 -
Uses of FunctionalInterface in javafx.event
Classes in javafx.event with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
EventHandler<T extends Event>
处理程序用于特定类/类型的事件。 -
Uses of FunctionalInterface in javafx.util
Classes in javafx.util with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
Builder<T>
代表构建器的界面。interface
BuilderFactory
界面代表建筑工厂。interface
Callback<P,R>
回调接口旨在允许一个常见的,可重用的接口,用于定义需要在某些情况下回调的API。 -
Uses of FunctionalInterface in jdk.dynalink.beans
Classes in jdk.dynalink.beans with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
MissingMemberHandlerFactory
创建方法句柄的工厂,用于链接缺少的成员行为BeansLinker
。 -
Uses of FunctionalInterface in jdk.dynalink.linker
Classes in jdk.dynalink.linker with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
GuardedInvocationTransformer
用于将一个受保护的调用转换为另一个的对象的接口。interface
MethodHandleTransformer
描述变换方法句柄的操作的通用界面。interface
MethodTypeConversionStrategy
表示用于将方法句柄转换为新类型的策略的对象的接口。 -
Uses of FunctionalInterface in jdk.incubator.http
Classes in jdk.incubator.http with annotations of type FunctionalInterface Modifier and Type 接口 描述 static interface
HttpResponse.BodyHandler<T>
响应机构的处理程序。 -
Uses of FunctionalInterface in jdk.nashorn.api.tree
Classes in jdk.nashorn.api.tree with annotations of type FunctionalInterface Modifier and Type 接口 描述 interface
DiagnosticListener
用于从Nashorn解析器接收诊断的接口。
-