java.lang
static class: ProcessBuilder.NullOutputStream [javadoc |
source]
java.lang.Object
java.io.OutputStream
java.lang.ProcessBuilder$NullOutputStream
All Implemented Interfaces:
Flushable, Closeable
Implements a
null output stream.
| Method from java.lang.ProcessBuilder$NullOutputStream Summary: |
|---|
|
write |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from java.lang.ProcessBuilder$NullOutputStream Detail: |
public void write(int b) throws IOException {
throw new IOException("Stream closed");
}
|