Uses of Class
org.klojang.check.aux.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.aux
Methods in org.klojang.check.aux that return ResultModifier and TypeMethodDescriptionstatic <T> Result<T> Result.notAvailable()Returns a specialResultinstance signifying the absence of a result.static <T> Result<T> Result.of(T value) Returns aResultcontaining the specified value (possiblynull).Returns thisResultif it contains a proper result value (possiblynull), else the providedResult.Methods in org.klojang.check.aux with parameters of type Result