Uses of Class
com.fa993.types.supertype.Either.OfThree
-
Packages that use Either.OfThree Package Description com.fa993.types.supertype -
-
Uses of Either.OfThree in com.fa993.types.supertype
Subclasses of Either.OfThree in com.fa993.types.supertype Modifier and Type Class Description classNumOrTwoSeqOrNdArrRepresents a specialized version ofEither.OfThreethat can hold one of three types: ADoublevalue An array of twodoublevalues A 2D array ofdoublevalues This class enforces specific constraints on the second type, requiring it to be a sequence of exactly two doubles.Methods in com.fa993.types.supertype that return Either.OfThree Modifier and Type Method Description static <A,B,C>
Either.OfThree<A,B,C>Either.OfThree. first(A first)Creates anOfThreeinstance with the first value selected.static <A,B,C>
Either.OfThree<A,B,C>Either.OfThree. second(B second)Creates anOfThreeinstance with the second value selected.static <A,B,C>
Either.OfThree<A,B,C>Either.OfThree. third(C third)Creates anOfThreeinstance with the third value selected.
-