| Package | Description |
|---|---|
| com.fasterxml.jackson.dataformat.csv |
| Modifier and Type | Class and Description |
|---|---|
static class |
CsvValueDecorators.StringPrefixSuffixDecorator
Decorated that adds static prefix and suffix around value to decorate value;
removes the same when un-decorating.
|
| Modifier and Type | Field and Description |
|---|---|
protected CsvValueDecorator |
CsvGenerator._nextColumnDecorator
Decorator to use for decorating the column value to follow, 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). |
| Modifier and Type | Method and Description |
|---|---|
CsvValueDecorator |
CsvSchema.Column.getValueDecorator() |
static CsvValueDecorator |
CsvValueDecorators.optionalPrefixSuffixDecorator(String prefix,
String suffix)
Factory method for constructing a
CsvValueDecorators.StringPrefixSuffixDecorator with
given prefix and suffix, both optional. |
static CsvValueDecorator |
CsvValueDecorators.requiredPrefixSuffixDecorator(String prefix,
String suffix)
Factory method for constructing a
CsvValueDecorators.StringPrefixSuffixDecorator with
given prefix and suffix, both required. |
| Modifier and Type | Method and Description |
|---|---|
CsvSchema.Column |
CsvSchema.Column.withValueDecorator(CsvValueDecorator valueDecorator) |
| Constructor and Description |
|---|
Column(CsvSchema.Column src,
CsvValueDecorator valueDecorator) |
Column(CsvSchema.Column src,
int index,
CsvValueDecorator valueDecorator,
CsvSchema.Column next) |
Copyright © 2025 FasterXML. All rights reserved.