Uses of Class
org.klojang.check.extra.Result
Packages that use Result
Package
Description
The central package of this Java module.
A small collection of classes and interfaces that do not themselves take part in the validation framework,
but are treated as first-class citizens by it.
-
Uses of Result in org.klojang.check
Methods in org.klojang.check that return types with arguments of type ResultModifier and TypeMethodDescriptionstatic <T> ComposablePredicate
<Result<T>> CommonChecks.available()
Verifies that a result is available. -
Uses of Result in org.klojang.check.extra
Methods in org.klojang.check.extra that return ResultModifier and TypeMethodDescriptionstatic <T> Result
<T> Result.notAvailable()
Returns a specialResult
instance indicating the absence of a result.static <T> Result
<T> Result.nullResult()
Returns aResult
containingnull
.static <T> Result
<T> Result.of
(T value) Returns aResult
containing the specified value (possiblynull
).