D E G P S

D

DummiesIO - class DummiesIO.
This class implments simple text-based input and output for the keyboard and for disk files.

E

endOfFile(String) - Static method in class DummiesIO
Tests to see if you've reached the end of a particular disk file.

G

getBoolean() - Static method in class DummiesIO
Reads a boolean value from the keyboard.
getBoolean(String) - Static method in class DummiesIO
Reads a boolean value from a disk file
getChar() - Static method in class DummiesIO
Reads a char value from the keyboard.
getChar(String) - Static method in class DummiesIO
Reads a char value from a disk file
getDouble() - Static method in class DummiesIO
Reads a double value from the keyboard.
getDouble(String) - Static method in class DummiesIO
Reads a double value from a disk file
getFloat() - Static method in class DummiesIO
Reads a float value from the keyboard.
getFloat(String) - Static method in class DummiesIO
Reads a float value from a disk file
getInt() - Static method in class DummiesIO
Reads an int value from the keyboard.
getInt(String) - Static method in class DummiesIO
Reads an int value from a disk file
getLine() - Static method in class DummiesIO
Reads the remaining line (up to the pressing of the Enter key) from the keyboard.
getLine(String) - Static method in class DummiesIO
Reads the remaining line (up to the start of a new line) from a disk file.
getLong() - Static method in class DummiesIO
Reads a long value from the keyboard.
getLong(String) - Static method in class DummiesIO
Reads a long value from a disk file
getShort() - Static method in class DummiesIO
Reads a short value from the keyboard.
getShort(String) - Static method in class DummiesIO
Reads a short value from a disk file
getString() - Static method in class DummiesIO
Reads a string of characters from the keyboard.
getString(String) - Static method in class DummiesIO
Reads a string of characters (up to the next blank space or the end of a line) from a disk file

P

print(String, boolean) - Static method in class DummiesIO
Writes the word true or the word false to a disk file.
print(String, char) - Static method in class DummiesIO
Writes a single character (without single quote marks) to a disk file.
print(String, double) - Static method in class DummiesIO
Writes a double value to a disk file.
print(String, float) - Static method in class DummiesIO
Writes a float value to a disk file.
print(String, int) - Static method in class DummiesIO
Writes an int value to a disk file.
print(String, long) - Static method in class DummiesIO
Writes a long to a disk file.
print(String, String) - Static method in class DummiesIO
Writes a string of characters to a disk file.
println(String, boolean) - Static method in class DummiesIO
Writes the word true or the word false to a disk file.
println(String, char) - Static method in class DummiesIO
Writes a single character (without single quote marks) to a disk file.
println(String, double) - Static method in class DummiesIO
Writes a double value to a disk file.
println(String, float) - Static method in class DummiesIO
Writes a float value to a disk file.
println(String, int) - Static method in class DummiesIO
Writes an int value to a disk file.
println(String, long) - Static method in class DummiesIO
Writes a long to a disk file.
println(String, String) - Static method in class DummiesIO
Writes a string of characters to a disk file.
println(String) - Static method in class DummiesIO
Writes no visible text to a disk file, but goes to the next line in the disk file (in preparation for any subsequent print or println calls that write to this file).

S

setForgiving(boolean) - Static method in class DummiesIO
With forgiving set to true, DummiesIO is generally more willing to continue running when it encounters an IO error.

D E G P S