Uses of Class
software.amazon.awssdk.utils.Either
Packages that use Either
-
Uses of Either in software.amazon.awssdk.utils
Methods in software.amazon.awssdk.utils that return EitherModifier and TypeMethodDescriptionstatic <L,R> Either<L, R> Either.left(L value) Create a new Either with the left type.Map the left most value and return a new Either reflecting the new types.Map the right most value and return a new Either reflecting the new types.static <L,R> Either<L, R> Either.right(R value) Create a new Either with the right type.Methods in software.amazon.awssdk.utils that return types with arguments of type EitherModifier and TypeMethodDescriptionEither.fromNullable(L left, R right) Create a newOptional<Either>from two possibly null values.