E M P R T

E

errPrint(boolean) - Method in class Terminal
Print a Boolean value (true or false) to standard err (without a newline).
errPrint(char) - Method in class Terminal
Print character to standard err (without a newline).
errPrint(char[]) - Method in class Terminal
Print character array to standard err (without a newline).
errPrint(double) - Method in class Terminal
Print a double-precision floating point number to standard err (without a newline).
errPrint(float) - Method in class Terminal
Print a floating point number to standard err (without a newline).
errPrint(int) - Method in class Terminal
Print integer to standard err (without a newline).
errPrint(long) - Method in class Terminal
Print a long integer to standard err (without a newline).
errPrint(Object) - Method in class Terminal
Print Object to standard err (without a newline).
errPrint(String) - Method in class Terminal
Print string to standard err (without a newline).
errPrintln() - Method in class Terminal
Print a newline to standard err, terminating the current line.
errPrintln(boolean) - Method in class Terminal
Print a Boolean value (true or false) to standard err, followed by a newline.
errPrintln(char) - Method in class Terminal
Print character to standard err, followed by a newline.
errPrintln(char[]) - Method in class Terminal
Print a character array to standard err, followed by a newline.
errPrintln(float) - Method in class Terminal
Print floating point number to standard err, followed by a newline.
errPrintln(double) - Method in class Terminal
Print a double-precision floating point number to standard err, followed by a newline.
errPrintln(int) - Method in class Terminal
Print integer to standard err, followed by a newline.
errPrintln(long) - Method in class Terminal
Print a long integer to standard err, followed by a newline.
errPrintln(Object) - Method in class Terminal
Print Object to standard err, followed by a newline.
errPrintln(String) - Method in class Terminal
Print string to standard err, followed by a newline.

M

main(String[]) - Static method in class Terminal
Unit test for Terminal.

P

print(boolean) - Method in class Terminal
Print a Boolean value (true or false) to standard output (without a newline).
print(char) - Method in class Terminal
Print character to standard output (without a newline).
print(char[]) - Method in class Terminal
Print character array to standard output (without a newline).
print(double) - Method in class Terminal
Print a double-precision floating point number to standard output (without a newline).
print(float) - Method in class Terminal
Print a floating point number to standard output (without a newline).
print(int) - Method in class Terminal
Print integer to standard output (without a newline).
print(long) - Method in class Terminal
Print a long integer to standard output (without a newline).
print(Object) - Method in class Terminal
Print Object to standard output (without a newline).
print(String) - Method in class Terminal
Print string to standard output (without a newline).
println() - Method in class Terminal
Print a newline to standard output, terminating the current line.
println(boolean) - Method in class Terminal
Print a Boolean value (true or false) to standard output, followed by a newline.
println(char) - Method in class Terminal
Print character to standard output, followed by a newline.
println(char[]) - Method in class Terminal
Print a character array to standard output, followed by a newline.
println(float) - Method in class Terminal
Print floating point number to standard output, followed by a newline.
println(double) - Method in class Terminal
Print a double-precision floating point number to standard output, followed by a newline.
println(int) - Method in class Terminal
Print integer to standard output, followed by a newline.
println(long) - Method in class Terminal
Print a long integer to standard output, followed by a newline.
println(Object) - Method in class Terminal
Print Object to standard output, followed by a newline.
println(String) - Method in class Terminal
Print string to standard output, followed by a newline.

R

readChar(String) - Method in class Terminal
Read a character from the Terminal.
readChar() - Method in class Terminal
Read a character from the Terminal.
readCharOnce(String) - Method in class Terminal
Read a character from the Terminal.
readCharOnce() - Method in class Terminal
Read a character from the Terminal.
readDouble(String) - Method in class Terminal
Read a double-precision floating point number, terminated by a newline, from the Terminal.
readDouble() - Method in class Terminal
Read a double-precision floating point number, terminated by a newline, from the Terminal.
readDoubleOnce(String) - Method in class Terminal
Read a double-precision floating point number, terminated by a newline, from the Terminal.
readDoubleOnce() - Method in class Terminal
Read a double-precision floating point number, terminated by a newline, from the Terminal.
readInt(String) - Method in class Terminal
Read an integer, terminated by a new line, from the Terminal.
readInt() - Method in class Terminal
Read an integer, terminated by a new line, from the Terminal.
readIntOnce(String) - Method in class Terminal
Read an integer, terminated by a new line, from the Terminal.
readIntOnce() - Method in class Terminal
Read an integer, terminated by a new line, from the Terminal.
readLine(String) - Method in class Terminal
Read a line (terminated by a newline) from the Terminal.
readLine() - Method in class Terminal
Read a line (terminated by a newline) from the Terminal.
readWord(String) - Method in class Terminal
Read a word from the Terminal.
readWord() - Method in class Terminal
Read a word from the Terminal.
readWordOnce(String) - Method in class Terminal
Read a word from the Terminal.
readWordOnce() - Method in class Terminal
Read a word from the Terminal.
readYesOrNo(String) - Method in class Terminal
Read "yes" or "no" from the Terminal.
readYesOrNo() - Method in class Terminal
Read "yes" or "no" from the Terminal.
readYesOrNoOnce(String) - Method in class Terminal
Read "yes" or "no" from the Terminal.
readYesOrNoOnce() - Method in class Terminal
Read "yes" or "no" from the Terminal.

T

Terminal - class Terminal.
Terminal provides a user-friendly interface to the standard System input and output streams (in, out, and err).
Terminal() - Constructor for class Terminal
Construct a Terminal that doesn't echo input.
Terminal(boolean) - Constructor for class Terminal
Construct a Terminal.

E M P R T