C R

C

ConsoleIn - class ConsoleIn.
Class for robust keyboard input.
ConsoleIn() - Constructor for class ConsoleIn
 

R

readLine() - Static method in class ConsoleIn
Reads a line of text and returns that line as a String value.
readLineBoolean() - Static method in class ConsoleIn
Input should consist of a single word on a line, possibly surrounded by whitespace.
readLineByte() - Static method in class ConsoleIn
The user is supposed to enter a whole number of type byte on a line by itself.
readLineDouble() - Static method in class ConsoleIn
The user is supposed to enter a number of type double on a line by itself.
readLineFloat() - Static method in class ConsoleIn
The user is supposed to enter a number of type float on a line by itself.
readLineInt() - Static method in class ConsoleIn
The user is supposed to enter a whole number of type int on a line by itself.
readLineLong() - Static method in class ConsoleIn
The user is supposed to enter a whole number of type long on a line by itself.
readLineNonwhiteChar() - Static method in class ConsoleIn
Returns the first non-whitespace character on the input line The rest of the input line is discarded.
readLineShort() - Static method in class ConsoleIn
The user is supposed to enter a whole number of type short on a line by itself.

C R