org.tanukisoftware.wrapper

Class WrapperPrintStream

final class WrapperPrintStream extends PrintStream

Not all methods are currently overridden as this is an internal class.
Method Summary
voidprintln()
Terminate the current line by writing the line separator string.
voidprintln(String x)
Print a String and then terminate the line.
voidprintln(Object x)
Print an Object and then terminate the line.

Method Detail

println

public void println()
Terminate the current line by writing the line separator string. The line separator string is defined by the system property line.separator, and is not necessarily a single newline character ('\n').

println

public void println(String x)
Print a String and then terminate the line. This method behaves as though it invokes WrapperPrintStream and then println.

Parameters: x The String to be printed.

println

public void println(Object x)
Print an Object and then terminate the line. This method behaves as though it invokes WrapperPrintStream and then println.

Parameters: x The Object to be printed.