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 接口 描述 interfaceKeyEventDispatcherKeyEventDispatcher与所有KeyEvents的目标和调度中的当前KeyboardFocusManager配合使用。interfaceKeyEventPostProcessorKeyEventPostProcessor与所有未消耗的KeyEvents的最终分辨率中的当前KeyboardFocusManager配合使用。 -
Uses of FunctionalInterface in java.io
Classes in java.io with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceFileFilter抽象路径名的过滤器。interfaceFilenameFilter用于实现此接口的类的实例用于过滤文件名。interfaceObjectInputFilter反序列化过程中过滤类,数组长度和图形指标。 -
Uses of FunctionalInterface in java.lang
Classes in java.lang with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceRunnableRunnable接口应由实例由线程执行的任何类实现。static interfaceThread.UncaughtExceptionHandler当Thread由于未捕获的异常而突然终止时,处理程序的接口被调用。 -
Uses of FunctionalInterface in java.nio.file
Classes in java.nio.file with annotations of type FunctionalInterface Modifier and Type 接口 描述 static interfaceDirectoryStream.Filter<T>由对象执行的接口,用于确定是否应接受或过滤目录条目。interfacePathMatcher由对路径执行匹配操作的对象实现的接口。 -
Uses of FunctionalInterface in java.time.temporal
Classes in java.time.temporal with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceTemporalAdjuster调整时间对象的策略。interfaceTemporalQuery<R>查询时间对象的策略。 -
Uses of FunctionalInterface in java.util
Classes in java.util with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceComparator<T>比较功能,对一些对象的集合施加了一个 整体排序 。 -
Uses of FunctionalInterface in java.util.concurrent
Classes in java.util.concurrent with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceCallable<V>返回结果并可能引发异常的任务。static interfaceFlow.Publisher<T>订阅者接收的项目(和相关控制消息)的生产者。 -
Uses of FunctionalInterface in java.util.function
Classes in java.util.function with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceBiConsumer<T,U>表示接受两个输入参数并且不返回结果的操作。interfaceBiFunction<T,U,R>表示接受两个参数并产生结果的函数。interfaceBinaryOperator<T>表示对同一类型的两个操作数的操作,产生与操作数相同类型的结果。interfaceBiPredicate<T,U>表示两个参数的谓词(布尔值函数)。interfaceBooleanSupplier代表boolean结果。interfaceConsumer<T>表示接受单个输入参数并且不返回结果的操作。interfaceDoubleBinaryOperator表示对两个double操作数的操作,并产生一个double结果。interfaceDoubleConsumer表示接受单个double参数的操作,不返回任何结果。interfaceDoubleFunction<R>表示接受双值参数并产生结果的函数。interfaceDoublePredicate表示一个double值参数的谓词(布尔值函数)。interfaceDoubleSupplier代表double结果。interfaceDoubleToIntFunction表示接受双值参数并产生int值结果的函数。interfaceDoubleToLongFunction表示接受双值参数并产生长期值结果的函数。interfaceDoubleUnaryOperator表示对单个double值的操作数的操作,产生一个double结果。interfaceFunction<T,R>表示接受一个参数并产生结果的函数。interfaceIntBinaryOperator表示对两个int值操作数的操作,并产生一个int结果。interfaceIntConsumer表示接受单个int参数的操作,并且不返回任何结果。interfaceIntFunction<R>表示一个接受int值参数并产生结果的函数。interfaceIntPredicate表示一个int值参数的谓词(布尔值函数)。interfaceIntSupplier代表int结果。interfaceIntToDoubleFunction表示接受一个int值参数并产生一个双值结果的函数。interfaceIntToLongFunction表示接受一个int值参数并产生一个长效结果的函数。interfaceIntUnaryOperator表示对单个int值操作数的操作,产生一个int结果。interfaceLongBinaryOperator表示对两个long操作数的操作,并产生一个long结果。interfaceLongConsumer表示接受一个long参数并且不返回任何结果的操作。interfaceLongFunction<R>表示接受长期参数并产生结果的函数。interfaceLongPredicate表示一个long值参数的谓词(布尔值函数)。interfaceLongSupplier代表long结果的供应商。interfaceLongToDoubleFunction表示接受长期参数并产生双值结果的函数。interfaceLongToIntFunction表示接受长值参数并产生int值结果的函数。interfaceLongUnaryOperator表示对单个long值操作数的操作,产生一个long结果。interfaceObjDoubleConsumer<T>表示接受对象值和double值参数的操作,不返回任何结果。interfaceObjIntConsumer<T>表示接受对象值和int值参数的操作,不返回任何结果。interfaceObjLongConsumer<T>表示接受对象值和long值参数的操作,不返回任何结果。interfacePredicate<T>表示一个参数的谓词(布尔值函数)。interfaceSupplier<T>代表结果供应商。interfaceToDoubleBiFunction<T,U>表示接受两个参数并产生双值结果的函数。interfaceToDoubleFunction<T>表示产生双值结果的函数。interfaceToIntBiFunction<T,U>表示一个接受两个参数并产生一个int值结果的函数。interfaceToIntFunction<T>表示产生一个int值结果的函数。interfaceToLongBiFunction<T,U>表示接受两个参数并产生长效结果的函数。interfaceToLongFunction<T>表示产生长期效果的函数。interfaceUnaryOperator<T>表示对单个操作数产生与其操作数相同类型的结果的操作。 -
Uses of FunctionalInterface in java.util.logging
Classes in java.util.logging with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceFilter可以使用过滤器对超出记录级别提供的控制范围内的记录进行细粒度控制。 -
Uses of FunctionalInterface in java.util.prefs
Classes in java.util.prefs with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfacePreferenceChangeListener用于接收偏好更改事件的侦听器。 -
Uses of FunctionalInterface in javafx.animation
Classes in javafx.animation with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceInterpolatable<T>可以插值的值。 -
Uses of FunctionalInterface in javafx.beans
Classes in javafx.beans with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceInvalidationListener一个InvalidationListener每当被通知Observable变为无效。 -
Uses of FunctionalInterface in javafx.beans.value
Classes in javafx.beans.value with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceChangeListener<T>甲ChangeListener通知每当的值ObservableValue种变化。 -
Uses of FunctionalInterface in javafx.collections
Classes in javafx.collections with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceListChangeListener<E>接收ObservableList更改通知的接口。interfaceMapChangeListener<K,V>接收到ObservableMap更改通知的接口。interfaceSetChangeListener<E>接收ObservableSet更改通知的接口。 -
Uses of FunctionalInterface in javafx.event
Classes in javafx.event with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceEventHandler<T extends Event>处理程序用于特定类/类型的事件。 -
Uses of FunctionalInterface in javafx.util
Classes in javafx.util with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceBuilder<T>代表构建器的界面。interfaceBuilderFactory界面代表建筑工厂。interfaceCallback<P,R>回调接口旨在允许一个常见的,可重用的接口,用于定义需要在某些情况下回调的API。 -
Uses of FunctionalInterface in jdk.dynalink.beans
Classes in jdk.dynalink.beans with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceMissingMemberHandlerFactory创建方法句柄的工厂,用于链接缺少的成员行为BeansLinker。 -
Uses of FunctionalInterface in jdk.dynalink.linker
Classes in jdk.dynalink.linker with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceGuardedInvocationTransformer用于将一个受保护的调用转换为另一个的对象的接口。interfaceMethodHandleTransformer描述变换方法句柄的操作的通用界面。interfaceMethodTypeConversionStrategy表示用于将方法句柄转换为新类型的策略的对象的接口。 -
Uses of FunctionalInterface in jdk.incubator.http
Classes in jdk.incubator.http with annotations of type FunctionalInterface Modifier and Type 接口 描述 static interfaceHttpResponse.BodyHandler<T>响应机构的处理程序。 -
Uses of FunctionalInterface in jdk.nashorn.api.tree
Classes in jdk.nashorn.api.tree with annotations of type FunctionalInterface Modifier and Type 接口 描述 interfaceDiagnosticListener用于从Nashorn解析器接收诊断的接口。
-