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 class
NumOrTwoSeqOrNdArr
Represents a specialized version ofEither.OfThree
that can hold one of three types: ADouble
value An array of twodouble
values A 2D array ofdouble
values 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 anOfThree
instance with the first value selected.static <A,B,C>
Either.OfThree<A,B,C>Either.OfThree. second(B second)
Creates anOfThree
instance with the second value selected.static <A,B,C>
Either.OfThree<A,B,C>Either.OfThree. third(C third)
Creates anOfThree
instance with the third value selected.
-