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 classCsvValueDecorators.StringPrefixSuffixDecoratorDecorated 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 CsvValueDecoratorCsvGenerator. _nextColumnDecoratorDecorator to use for decorating the column value to follow, if any;nullif none.private CsvValueDecoratorCsvSchema.Column. _valueDecoratorValue decorator used for this column, if any;nullif none.static CsvValueDecoratorCsvValueDecorators. OPTIONAL_BRACKETS_DECORATORCsvValueDecorators.StringPrefixSuffixDecoratorthat uses square brackets ([]) around decorated value, but does not require their use (removes if used, ignores it not).static 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 CsvValueDecorator Modifier and Type Method Description CsvValueDecoratorCsvSchema.Column. getValueDecorator()static CsvValueDecoratorCsvValueDecorators. optionalPrefixSuffixDecorator(java.lang.String prefix, java.lang.String suffix)Factory method for constructing aCsvValueDecorators.StringPrefixSuffixDecoratorwith given prefix and suffix, both optional.static CsvValueDecoratorCsvValueDecorators. requiredPrefixSuffixDecorator(java.lang.String prefix, java.lang.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 CsvValueDecorator Modifier and Type Method Description CsvSchema.ColumnCsvSchema.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)
-