Uses of Class
de.s42.base.functional.Either

Packages that use Either
Package
Description
 
  • Uses of Either in de.s42.base.functional

    Methods in de.s42.base.functional that return Either
    Modifier and Type
    Method
    Description
    static <FirstType, SecondType>
    Either<FirstType, SecondType>
    Either.ofEither(FirstType first, SecondType second)
    Create an Either with one of the given values being non null.
    static <FirstType, SecondType>
    Either<FirstType, SecondType>
    Either.ofFirst(FirstType first)
    Create an Either with first.
    static <FirstType, SecondType>
    Either<FirstType, SecondType>
    Either.ofSecond(SecondType second)
    Create an Either with second.