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 CsvGeneratorCsvFactory._createGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, Writer out) protected CsvGeneratorCsvFactory._createGenerator(Writer out, com.fasterxml.jackson.core.io.IOContext ctxt) protected CsvGeneratorCsvFactory._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 StringCsvValueDecorator.decorateNull(CsvGenerator gen) Method called instead ofCsvValueDecorator.decorateValue(CsvGenerator, String)in case where value being written is from Javanullvalue: 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 CsvMappingExceptionCsvMappingException.from(CsvGenerator gen, String msg, CsvSchema schema) Deprecated.static CsvWriteExceptionCsvWriteException.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)