public class Either<T,U>
extends Object
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
either
public static <T,
U> Either<T,U> either(T left,
U right)
-
left
public static <T,
U> Either<T,U> left(T left)
-
right
public static <T,
U> Either<T,U> right(U right)
-
-