Uses of Interface
com.fasterxml.jackson.dataformat.csv.CsvValueDecorator
Packages that use CsvValueDecorator
-
Uses of CsvValueDecorator in com.fasterxml.jackson.dataformat.csv
Classes in com.fasterxml.jackson.dataformat.csv that implement CsvValueDecoratorModifier and TypeClassDescriptionstatic class
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 CsvValueDecoratorModifier and TypeFieldDescriptionprotected CsvValueDecorator
CsvGenerator._nextColumnDecorator
Decorator to use for decorating the column value to follow, if any;null
if none.private final CsvValueDecorator
CsvSchema.Column._valueDecorator
Value decorator used for this column, if any;null
if none.static final 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 final 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 CsvValueDecoratorModifier and TypeMethodDescriptionCsvSchema.Column.getValueDecorator()
static CsvValueDecorator
CsvValueDecorators.optionalPrefixSuffixDecorator
(String prefix, String suffix) Factory method for constructing aCsvValueDecorators.StringPrefixSuffixDecorator
with given prefix and suffix, both optional.static CsvValueDecorator
CsvValueDecorators.requiredPrefixSuffixDecorator
(String prefix, 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 CsvValueDecoratorModifier and TypeMethodDescriptionCsvSchema.Column.withValueDecorator
(CsvValueDecorator valueDecorator) Constructors in com.fasterxml.jackson.dataformat.csv with parameters of type CsvValueDecoratorModifierConstructorDescriptionprotected
Column
(CsvSchema.Column src, int index, CsvValueDecorator valueDecorator, CsvSchema.Column next) protected
Column
(CsvSchema.Column src, CsvValueDecorator valueDecorator)