Uses of Class
io.streamthoughts.azkarra.api.monad.Either
-
Packages that use Either Package Description io.streamthoughts.azkarra.api.monad io.streamthoughts.azkarra.api.query.result -
-
Uses of Either in io.streamthoughts.azkarra.api.monad
Subclasses of Either in io.streamthoughts.azkarra.api.monad Modifier and Type Class Description static class
Either.Left<L,R>
static class
Either.Right<L,R>
Methods in io.streamthoughts.azkarra.api.monad that return Either Modifier and Type Method Description <LL> Either<LL,R>
Either.LeftProjection. flatMap(Function<? super L,Either<LL,R>> fn)
<RR> Either<L,RR>
Either.RightProjection. flatMap(Function<? super R,Either<L,RR>> fn)
static <L,R>
Either<L,R>Either. left(L value)
<LL> Either<LL,R>
Either.LeftProjection. map(Function<? super L,? extends LL> fn)
<RR> Either<L,RR>
Either.RightProjection. map(Function<? super R,? extends RR> fn)
static <L,R>
Either<L,R>Either. right(R value)
Either<T,List<Error>>
Validator. toEither()
Method parameters in io.streamthoughts.azkarra.api.monad with type arguments of type Either Modifier and Type Method Description <LL> Either<LL,R>
Either.LeftProjection. flatMap(Function<? super L,Either<LL,R>> fn)
<RR> Either<L,RR>
Either.RightProjection. flatMap(Function<? super R,Either<L,RR>> fn)
-
Uses of Either in io.streamthoughts.azkarra.api.query.result
Methods in io.streamthoughts.azkarra.api.query.result that return types with arguments of type Either Modifier and Type Method Description List<Either<SuccessResultSet<K,V>,ErrorResultSet>>
GlobalResultSet. unwrap()
-