A class to write to a buffer. Similar to StringWriter
.
Thread-safe.
public final class StringOutputStream extends OutputStream {public StringOutputStream();
public void write(int b);
public String toString();
}
Methods inherited from java.io.OutputStream:
close
, flush
, write
Methods inherited from java.lang.Object:
clone
, equals
, finalize
, getClass
, hashCode
, notify
, notifyAll
, toString
, wait
Inheritance Path. java.lang.Object-> java.io.OutputStream-> org.kaiwitte.workbench.ui.model.StringOutputStream