Uses of Interface
com.fasterxml.jackson.dataformat.csv.CsvValueDecorator
-
Packages that use CsvValueDecorator Package Description com.fasterxml.jackson.dataformat.csv -
-
Uses of CsvValueDecorator in com.fasterxml.jackson.dataformat.csv
Classes in com.fasterxml.jackson.dataformat.csv that implement CsvValueDecorator Modifier and Type Class Description static class
CsvValueDecorators.StringPrefixSuffixDecorator
Decorated that adds static prefix and suffix around value to decorate value; removes the same when un-decorating.Fields in com.fasterxml.jackson.dataformat.csv declared as CsvValueDecorator Modifier and Type Field Description protected CsvValueDecorator
CsvGenerator. _nextColumnDecorator
Decorator to use for decorating the column value to follow, if any;null
if none.private CsvValueDecorator
CsvSchema.Column. _valueDecorator
Value decorator used for this column, if any;null
if none.static CsvValueDecorator
CsvValueDecorators. OPTIONAL_BRACKETS_DECORATOR
CsvValueDecorators.StringPrefixSuffixDecorator
that uses square brackets ([]
) around decorated value, but does not require their use (removes if used, ignores it not).static CsvValueDecorator
CsvValueDecorators. STRICT_BRACKETS_DECORATOR
CsvValueDecorators.StringPrefixSuffixDecorator
that uses square brackets ([]
) around decorated value, and requires their use (if value has no matching decoration, an exception is thrown when attempting to read the value).Methods in com.fasterxml.jackson.dataformat.csv that return CsvValueDecorator Modifier and Type Method Description CsvValueDecorator
CsvSchema.Column. getValueDecorator()
static CsvValueDecorator
CsvValueDecorators. optionalPrefixSuffixDecorator(java.lang.String prefix, java.lang.String suffix)
Factory method for constructing aCsvValueDecorators.StringPrefixSuffixDecorator
with given prefix and suffix, both optional.static CsvValueDecorator
CsvValueDecorators. requiredPrefixSuffixDecorator(java.lang.String prefix, java.lang.String suffix)
Factory method for constructing aCsvValueDecorators.StringPrefixSuffixDecorator
with given prefix and suffix, both required.Methods in com.fasterxml.jackson.dataformat.csv with parameters of type CsvValueDecorator Modifier and Type Method Description CsvSchema.Column
CsvSchema.Column. withValueDecorator(CsvValueDecorator valueDecorator)
Constructors in com.fasterxml.jackson.dataformat.csv with parameters of type CsvValueDecorator Constructor Description Column(CsvSchema.Column src, int index, CsvValueDecorator valueDecorator, CsvSchema.Column next)
Column(CsvSchema.Column src, CsvValueDecorator valueDecorator)
-