Package org.omegat.util
Class NullBufferedWriter
- java.lang.Object
-
- java.io.Writer
-
- java.io.BufferedWriter
-
- org.omegat.util.NullBufferedWriter
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.Appendable
,java.lang.AutoCloseable
public class NullBufferedWriter extends java.io.BufferedWriter
/dev/null writer. Used for filters where BufferedWriter required by filter, but not need for application.
-
-
Constructor Summary
Constructors Constructor Description NullBufferedWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
flush()
void
write(char[] cbuf, int off, int len)
void
write(int c)
void
write(java.lang.String s, int off, int len)
-
-
-
Method Detail
-
write
public void write(int c) throws java.io.IOException
- Overrides:
write
in classjava.io.BufferedWriter
- Throws:
java.io.IOException
-
write
public void write(char[] cbuf, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.BufferedWriter
- Throws:
java.io.IOException
-
write
public void write(java.lang.String s, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.BufferedWriter
- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException
- Specified by:
flush
in interfacejava.io.Flushable
- Overrides:
flush
in classjava.io.BufferedWriter
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.BufferedWriter
- Throws:
java.io.IOException
-
-