C D E I O P R

C

close() - Static method in class In
Close the current input file.
close() - Static method in class Out
Close the current output file.

D

done() - Static method in class In
Check if the previous operation was successful.
done() - Static method in class Out
Return true if the previous Out operation was successful, otherwise return false.

E

eof - Static variable in class In
End of file indicator returned by read() or peek() when no more characters can be read.

I

In - class In.
Simple input from the keyboard or from a file.
In() - Constructor for class In
 

O

open(String) - Static method in class In
Open a text file for reading The text file with the name fn is opened as the new current input file.
open(String) - Static method in class Out
Open the file with the name fn as the current output file.
Out - class Out.
Simple output to the console and to files.
Out() - Constructor for class Out
 

P

peek() - Static method in class In
Peek at the next character.
print(boolean) - Static method in class Out
Print the boolean value b either as "true" or "false".
print(char) - Static method in class Out
Print the character value c.
print(char[]) - Static method in class Out
Print the character array a.
print(double) - Static method in class Out
Print the double value d.
print(float) - Static method in class Out
Print the float value f.
print(int) - Static method in class Out
Print the integer value i.
print(long) - Static method in class Out
Print the long value l.
print(Object) - Static method in class Out
Print the Object o as resulting from String.valueOf(o).
print(String) - Static method in class Out
Print the String s.
println() - Static method in class Out
Terminate the current line by writing a line separator string.
println(boolean) - Static method in class Out
Print the boolean value b and terminate the line.
println(char) - Static method in class Out
Print the character value c and terminate the line.
println(char[]) - Static method in class Out
Print the character array a and terminate the line.
println(double) - Static method in class Out
Print the double value d and terminate the line.
println(float) - Static method in class Out
Print the float value f and terminate the line.
println(int) - Static method in class Out
Print the integer value i and terminate the line.
println(long) - Static method in class Out
Print the long value l and terminate the line.
println(Object) - Static method in class Out
Print the Object o as resulting from String.valueOf(o) and terminate the line.
println(String) - Static method in class Out
Print the String s and terminate the line.

R

read() - Static method in class In
Read a character (byte).
readBoolean() - Static method in class In
Read a boolean value.
readDouble() - Static method in class In
Read a double value.
readFile() - Static method in class In
Read the whole file.
readFloat() - Static method in class In
Read a float value.
readIdentifier() - Static method in class In
Read an identifier.
readInt() - Static method in class In
Read an integer.
readLine() - Static method in class In
Read a line of text.
readLong() - Static method in class In
Read a long integer.
readString() - Static method in class In
Read a quote-delimited string.
readWord() - Static method in class In
Read a word.

C D E I O P R