org.tanukisoftware.wrapper
final class WrapperPrintStream extends PrintStream
Method Summary | |
---|---|
void | println()
Terminate the current line by writing the line separator string. |
void | println(String x)
Print a String and then terminate the line. |
void | println(Object x)
Print an Object and then terminate the line. |
line.separator
, and is not necessarily a single newline
character ('\n'
).WrapperPrintStream
and then
println
.
Parameters: x The String
to be printed.
WrapperPrintStream
and then
println
.
Parameters: x The Object
to be printed.