Uses of Interface
cloud.opencode.base.functional.function.CheckedConsumer
Packages that use CheckedConsumer
Package
Description
OpenCode Functional - Functional Programming Utilities for JDK 25+
OpenCode 函数式编程工具库
Function Utilities - Advanced function operations
函数工具 - 高级函数操作
-
Uses of CheckedConsumer in cloud.opencode.base.functional
Methods in cloud.opencode.base.functional that return CheckedConsumerModifier and TypeMethodDescriptionstatic <T> CheckedConsumer<T> OpenFunctional.checkedConsumer(CheckedConsumer<T> c) Create a CheckedConsumer 创建可抛异常的消费者Methods in cloud.opencode.base.functional with parameters of type CheckedConsumerModifier and TypeMethodDescriptionstatic <T> CheckedConsumer<T> OpenFunctional.checkedConsumer(CheckedConsumer<T> c) Create a CheckedConsumer 创建可抛异常的消费者static <T> Consumer<T> OpenFunctional.uncheckedConsumer(CheckedConsumer<T> c) Convert CheckedConsumer to standard Consumer 将 CheckedConsumer 转换为标准 Consumer -
Uses of CheckedConsumer in cloud.opencode.base.functional.function
Methods in cloud.opencode.base.functional.function that return CheckedConsumerModifier and TypeMethodDescriptiondefault CheckedConsumer<T> CheckedConsumer.andThen(CheckedConsumer<? super T> after) Chain with another consumer (execute this, then after) 与另一个消费者链接(先执行本函数,再执行 after)static <T> CheckedConsumer<T> Wrap a standard Consumer as CheckedConsumer 将标准 Consumer 包装为 CheckedConsumerMethods in cloud.opencode.base.functional.function with parameters of type CheckedConsumerModifier and TypeMethodDescriptiondefault CheckedConsumer<T> CheckedConsumer.andThen(CheckedConsumer<? super T> after) Chain with another consumer (execute this, then after) 与另一个消费者链接(先执行本函数,再执行 after)