C D O P

C

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

D

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

O

open(String) - Static method in class Out
Open the file with the name fn as the current output file.
Out - Class in <Unnamed>
Simple output to the console and to files.
Out() - Constructor for class Out
 

P

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(int) - Static method in class Out
Print the integer value i.
print(long) - Static method in class Out
Print the long value l.
print(float) - Static method in class Out
Print the float value f.
print(double) - Static method in class Out
Print the double value d.
print(char[]) - Static method in class Out
Print the character array a.
print(String) - Static method in class Out
Print the String s.
print(Object) - Static method in class Out
Print the Object o as resulting from String.valueOf(o).
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(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(float) - Static method in class Out
Print the float value f and terminate the line.
println(double) - Static method in class Out
Print the double value d and terminate the line.
println(char[]) - Static method in class Out
Print the character array a and terminate the line.
println(String) - Static method in class Out
Print the String s 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.

C D O P