|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--java.io.PrintStream
Print characters in the Javelin IDE's message window.
| Constructor Summary | |
PrintStream()
Create a new PrintStream. |
|
| Method Summary | |
void |
print(boolean b)
Print a boolean value on the terminal. |
void |
print(char c)
Print a character on the terminal. |
void |
print(int i)
Print an integer on the terminal. |
void |
print(String s)
Print a string on the terminal. |
void |
println(boolean b)
Print a boolean value on the terminal and move to a new line. |
void |
println(char c)
Print a character on the terminal and move to a new line. |
void |
println(int i)
Print an integer on the terminal and move to a new line. |
void |
println(String s)
Print a string on the terminal and move to a new line. |
| Methods inherited from class java.lang.Object |
equals |
| Constructor Detail |
public PrintStream()
System.out.println.
Methods in this class do not allocate memory when they are called.
| Method Detail |
public void print(String s)
s - the string to print.public void print(int i)
i - the integer to print.public void print(char c)
c - the character to print.public void print(boolean b)
b - the boolean value to print.public void println(String s)
s - the string to print.public void println(int i)
i - the integer to print.public void println(boolean b)
b - the boolean value to print.public void println(char c)
c - the character to print.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||