MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / right

Method right

java/src/org/openqa/selenium/internal/Either.java:41–43  ·  view source on GitHub ↗
(B b)

Source from the content-addressed store, hash-verified

39 }
40
41 public static <A extends @Nullable Object, B extends @Nullable Object> Either<A, B> right(B b) {
42 return new Either<>(null, b);
43 }
44
45 public boolean isLeft() {
46 return left != null;

Calls

no outgoing calls