public
class
StringBuilderPrinter
extends Object
implements
Printer
java.lang.Object | |
↳ | android.util.StringBuilderPrinter |
Implementation of a Printer
that sends its output
to a StringBuilder
.
Public constructors | |
---|---|
StringBuilderPrinter(StringBuilder builder)
Create a new Printer that sends to a StringBuilder object. |
Public methods | |
---|---|
void
|
println(String x)
Write a line of text to the output. |
Inherited methods | |
---|---|
From
class
java.lang.Object
| |
From
interface
android.util.Printer
|
StringBuilderPrinter (StringBuilder builder)
Create a new Printer that sends to a StringBuilder object.
Parameters | |
---|---|
builder |
StringBuilder :
The StringBuilder where you would like output to go.
|
void println (String x)
Write a line of text to the output. There is no need to terminate the given string with a newline.
Parameters | |
---|---|
x |
String
|