Uses of Class
com.fasterxml.jackson.dataformat.csv.CsvGenerator
-
Packages that use CsvGenerator Package Description com.fasterxml.jackson.dataformat.csv -
-
Uses of CsvGenerator in com.fasterxml.jackson.dataformat.csv
Methods in com.fasterxml.jackson.dataformat.csv that return CsvGenerator Modifier and Type Method Description protected CsvGenerator
CsvFactory. _createGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, java.io.Writer out)
protected CsvGenerator
CsvFactory. _createGenerator(java.io.Writer out, com.fasterxml.jackson.core.io.IOContext ctxt)
protected CsvGenerator
CsvFactory. _createUTF8Generator(java.io.OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt)
CsvGenerator
CsvGenerator. configure(CsvGenerator.Feature f, boolean state)
CsvGenerator
CsvFactory. createGenerator(java.io.File f, com.fasterxml.jackson.core.JsonEncoding enc)
CsvGenerator
CsvFactory. createGenerator(java.io.OutputStream out)
This method assumes use of UTF-8 for encoding.CsvGenerator
CsvFactory. createGenerator(java.io.OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc)
CsvGenerator
CsvFactory. createGenerator(java.io.Writer out)
CsvGenerator
CsvGenerator. disable(CsvGenerator.Feature f)
CsvGenerator
CsvGenerator. enable(CsvGenerator.Feature f)
CsvGenerator
CsvGenerator. setPrettyPrinter(com.fasterxml.jackson.core.PrettyPrinter pp)
No way (or need) to indent anything, so let's block any attempts.CsvGenerator
CsvGenerator. useDefaultPrettyPrinter()
No way (or need) to indent anything, so let's block any attempts.Methods in com.fasterxml.jackson.dataformat.csv with parameters of type CsvGenerator Modifier and Type Method Description default java.lang.String
CsvValueDecorator. decorateNull(CsvGenerator gen)
Method called instead ofCsvValueDecorator.decorateValue(com.fasterxml.jackson.dataformat.csv.CsvGenerator, java.lang.String)
in case where value being written is from Javanull
value: this is often left as-is, without decoration (and this is the default implementation), but may be decorated.java.lang.String
CsvValueDecorator. decorateValue(CsvGenerator gen, java.lang.String plainValue)
Method called during serialization when encoding a value, to produce "decorated" value to include in output (possibly escaped and/or quoted).java.lang.String
CsvValueDecorators.StringPrefixSuffixDecorator. decorateValue(CsvGenerator gen, java.lang.String plainValue)
static CsvMappingException
CsvMappingException. from(CsvGenerator gen, java.lang.String msg, CsvSchema schema)
Deprecated.static CsvWriteException
CsvWriteException. from(CsvGenerator gen, java.lang.String msg, CsvSchema schema)
Constructors in com.fasterxml.jackson.dataformat.csv with parameters of type CsvGenerator Constructor Description CsvMappingException(CsvGenerator gen, java.lang.String msg, CsvSchema schema)
Deprecated.CsvWriteException(CsvGenerator gen, java.lang.String msg, CsvSchema schema)
-