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 classDecorated 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 CsvValueDecoratorCsvGenerator._nextColumnDecoratorDecorator to use for decorating the column value to follow, if any;nullif none.private final CsvValueDecoratorCsvSchema.Column._valueDecoratorValue decorator used for this column, if any;nullif none.static final CsvValueDecoratorCsvValueDecorators.OPTIONAL_BRACKETS_DECORATORCsvValueDecorators.StringPrefixSuffixDecoratorthat uses square brackets ([]) around decorated value, but does not require their use (removes if used, ignores it not).static final CsvValueDecoratorCsvValueDecorators.STRICT_BRACKETS_DECORATORCsvValueDecorators.StringPrefixSuffixDecoratorthat 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 CsvValueDecoratorCsvValueDecorators.optionalPrefixSuffixDecorator(String prefix, String suffix) Factory method for constructing aCsvValueDecorators.StringPrefixSuffixDecoratorwith given prefix and suffix, both optional.static CsvValueDecoratorCsvValueDecorators.requiredPrefixSuffixDecorator(String prefix, String suffix) Factory method for constructing aCsvValueDecorators.StringPrefixSuffixDecoratorwith 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 CsvValueDecoratorModifierConstructorDescriptionprotectedColumn(CsvSchema.Column src, int index, CsvValueDecorator valueDecorator, CsvSchema.Column next) protectedColumn(CsvSchema.Column src, CsvValueDecorator valueDecorator)