public class StdoutWrapper extends OutputStream
Constructor and Description |
---|
StdoutWrapper() |
Modifier and Type | Method and Description |
---|---|
void |
flush() |
void |
flushLine() |
void |
print(PyObject o) |
void |
print(PyObject o,
boolean space,
boolean newline) |
void |
print(String s) |
void |
printComma(PyObject o) |
void |
println() |
void |
println(PyObject o) |
void |
println(String s) |
void |
write(byte[] data,
int off,
int len) |
void |
write(int i) |
void |
write(String s) |
close, write
public void flush()
flush
in interface Flushable
flush
in class OutputStream
public void write(String s)
public void write(int i)
write
in class OutputStream
public void write(byte[] data, int off, int len)
write
in class OutputStream
public void flushLine()
public void print(PyObject o, boolean space, boolean newline)
public void print(String s)
public void println(String s)
public void print(PyObject o)
public void printComma(PyObject o)
public void println(PyObject o)
public void println()