Uses of Class
com.fasterxml.jackson.dataformat.csv.CsvGenerator
Packages that use CsvGenerator
-
Uses of CsvGenerator in com.fasterxml.jackson.dataformat.csv
Methods in com.fasterxml.jackson.dataformat.csv that return CsvGeneratorModifier and TypeMethodDescriptionprotected CsvGenerator
CsvFactory._createGenerator
(com.fasterxml.jackson.core.io.IOContext ctxt, Writer out) protected CsvGenerator
CsvFactory._createGenerator
(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) protected CsvGenerator
CsvFactory._createUTF8Generator
(OutputStream out, com.fasterxml.jackson.core.io.IOContext ctxt) CsvGenerator.configure
(CsvGenerator.Feature f, boolean state) CsvFactory.createGenerator
(File f, com.fasterxml.jackson.core.JsonEncoding enc) CsvFactory.createGenerator
(OutputStream out) This method assumes use of UTF-8 for encoding.CsvFactory.createGenerator
(OutputStream out, com.fasterxml.jackson.core.JsonEncoding enc) CsvFactory.createGenerator
(Writer out) CsvGenerator.disable
(CsvGenerator.Feature f) CsvGenerator.enable
(CsvGenerator.Feature f) CsvGenerator.setPrettyPrinter
(com.fasterxml.jackson.core.PrettyPrinter pp) No way (or need) to indent anything, so let's block any attempts.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 CsvGeneratorModifier and TypeMethodDescriptiondefault 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.CsvValueDecorator.decorateValue
(CsvGenerator gen, String plainValue) Method called during serialization when encoding a value, to produce "decorated" value to include in output (possibly escaped and/or quoted).CsvValueDecorators.StringPrefixSuffixDecorator.decorateValue
(CsvGenerator gen, String plainValue) static CsvMappingException
CsvMappingException.from
(CsvGenerator gen, String msg, CsvSchema schema) Deprecated.static CsvWriteException
CsvWriteException.from
(CsvGenerator gen, String msg, CsvSchema schema) Constructors in com.fasterxml.jackson.dataformat.csv with parameters of type CsvGeneratorModifierConstructorDescriptionCsvMappingException
(CsvGenerator gen, String msg, CsvSchema schema) Deprecated.CsvWriteException
(CsvGenerator gen, String msg, CsvSchema schema)