Method Summary |
|
public void | close() |
abstract public void | print(String s) Prints the string provided. |
abstract public void | print(boolean b) Prints the boolean provided. |
abstract public void | print(char c) |
abstract public void | print(int i) Prints the integer provided. |
abstract public void | print(long l) Prints the long provided. |
abstract public void | print(float f) Prints the float provided. |
abstract public void | print(double d) Prints the double provided. |
abstract public void | println() Prints a CRLF. |
abstract public void | println(String s) Prints the string provided, followed by a CRLF. |
abstract public void | println(boolean b) Prints the boolean provided, followed by a CRLF. |
abstract public void | println(char c) Prints the character provided, followed by a CRLF. |
abstract public void | println(int i) Prints the integer provided, followed by a CRLF. |
abstract public void | println(long l) Prints the long provided, followed by a CRLF. |
abstract public void | println(float f) Prints the float provided, followed by a CRLF. |
abstract public void | println(double d) Prints the double provided, followed by a CRLF. |