Package org.openqa.selenium.internal
Class Either<A,B>
- java.lang.Object
-
- org.openqa.selenium.internal.Either<A,B>
-
public class Either<A,B> extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isLeft()
boolean
isRight()
A
left()
static <A,B>
Either<A,B>left(A a)
B
right()
static <A,B>
Either<A,B>right(B b)
-