Uses of Interface
cloud.opencode.base.core.func.CheckedSupplier
Packages that use CheckedSupplier
Package
Description
Core utilities and foundational classes for the OpenCode Base library.
Common exception types for the OpenCode Base framework.
Functional interfaces and lambda utilities.
Result and response wrapper types for operation outcomes.
-
Uses of CheckedSupplier in cloud.opencode.base.core
Methods in cloud.opencode.base.core with parameters of type CheckedSupplierModifier and TypeMethodDescriptionstatic <T> Lazy<T> Lazy.of(CheckedSupplier<T> supplier) Create a Lazy from a CheckedSupplier. -
Uses of CheckedSupplier in cloud.opencode.base.core.exception
Subinterfaces of CheckedSupplier in cloud.opencode.base.core.exceptionModifier and TypeInterfaceDescriptionstatic interfaceDeprecated, for removal: This API element is subject to removal in a future version. -
Uses of CheckedSupplier in cloud.opencode.base.core.func
Methods in cloud.opencode.base.core.func that return CheckedSupplierModifier and TypeMethodDescriptionstatic <T> CheckedSupplier<T> Wraps a standard Supplier as a CheckedSupplier 将普通 Supplier 包装为 CheckedSupplierMethods in cloud.opencode.base.core.func with parameters of type CheckedSupplierModifier and TypeMethodDescriptionstatic <V> CheckedCallable<V> CheckedCallable.from(CheckedSupplier<V> supplier) Converts a CheckedSupplier to a CheckedCallable 将 CheckedSupplier 转换为 CheckedCallable -
Uses of CheckedSupplier in cloud.opencode.base.core.result
Methods in cloud.opencode.base.core.result with parameters of type CheckedSupplierModifier and TypeMethodDescriptionstatic <T> Result<T> Result.of(CheckedSupplier<T> supplier) Create a Result by executing a CheckedSupplier, catching any exception as Failure 通过执行 CheckedSupplier 创建 Result,捕获任何异常为 Failure
CheckedSupplierinstead.