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

Method argument

java/src/org/openqa/selenium/internal/Require.java:86–88  ·  view source on GitHub ↗
(String argName, @Nullable T arg)

Source from the content-addressed store, hash-verified

84 }
85
86 public static <T> ArgumentChecker<T> argument(String argName, @Nullable T arg) {
87 return new ArgumentChecker<>(argName, arg);
88 }
89
90 public static Duration nonNegative(String argName, @Nullable Duration arg) {
91 nonNull(argName, arg);

Calls

no outgoing calls