public class Either<V,E>
extends Object
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
onCondition
public static <V,
E> Either<V,E> onCondition(boolean condition,
V value,
E error)
-
onValue
public static <V,
E> Either<V,E> onValue(V value)
-
onError
public static <V,
E> Either<V,E> onError(E error)
-
hasError
public boolean hasError()
-
-
-