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

Method read

java/src/org/openqa/selenium/json/Input.java:78–80  ·  view source on GitHub ↗

Read and consume the next character from the input. @return the next input character; #EOF if input is exhausted

()

Source from the content-addressed store, hash-verified

76 * @return the next input character; {@link #EOF} if input is exhausted
77 */
78 public char read() {
79 return fill() ? buffer[++position] : EOF;
80 }
81
82 /**
83 * Return a string containing the most recently consumed input characters.

Callers

nothing calls this directly

Calls 1

fillMethod · 0.95

Tested by

no test coverage detected