@Deprecated public class CloseSafeUTF8Writer extends Writer
UTF8Writer
to prevent it from throwing
an NPE after closing. It would be easier to subclass it, but UTF8Writer
is
final, so we have to use delegation.Constructor and Description |
---|
CloseSafeUTF8Writer(com.fasterxml.jackson.core.io.IOContext ctxt,
OutputStream out)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Writer |
append(char c)
Deprecated.
|
void |
close()
Deprecated.
|
void |
flush()
Deprecated.
|
void |
write(char[] cbuf)
Deprecated.
|
void |
write(char[] cbuf,
int off,
int len)
Deprecated.
|
void |
write(int c)
Deprecated.
|
void |
write(String str)
Deprecated.
|
void |
write(String str,
int off,
int len)
Deprecated.
|
public CloseSafeUTF8Writer(com.fasterxml.jackson.core.io.IOContext ctxt, OutputStream out)
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class Writer
IOException
public void flush() throws IOException
flush
in interface Flushable
flush
in class Writer
IOException
public Writer append(char c) throws IOException
append
in interface Appendable
append
in class Writer
IOException
public void write(char[] cbuf) throws IOException
write
in class Writer
IOException
public void write(char[] cbuf, int off, int len) throws IOException
write
in class Writer
IOException
public void write(int c) throws IOException
write
in class Writer
IOException
public void write(String str) throws IOException
write
in class Writer
IOException
public void write(String str, int off, int len) throws IOException
write
in class Writer
IOException
Copyright © 2022 FasterXML. All rights reserved.