Package | Description |
---|---|
com.fasterxml.jackson.dataformat.csv |
Modifier and Type | Method and Description |
---|---|
protected CsvSchema.ColumnType |
CsvMapper._determineType(Class<?> propType) |
CsvSchema.ColumnType |
CsvSchema.Column.getType() |
static CsvSchema.ColumnType |
CsvSchema.ColumnType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvSchema.ColumnType[] |
CsvSchema.ColumnType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
CsvSchema.Builder |
CsvSchema.Builder.addColumn(String name,
CsvSchema.ColumnType type)
NOTE: does NOT check for duplicate column names so it is possibly to
accidentally add duplicates.
|
CsvSchema.Builder |
CsvSchema.Builder.addColumns(Iterable<String> names,
CsvSchema.ColumnType type)
NOTE: does NOT check for duplicate column names so it is possibly to
accidentally add duplicates.
|
CsvSchema.Builder |
CsvSchema.Builder.setColumnType(int index,
CsvSchema.ColumnType type) |
CsvSchema.Column |
CsvSchema.Column.withType(CsvSchema.ColumnType newType) |
Constructor and Description |
---|
Column(int index,
String name,
CsvSchema.ColumnType type) |
Column(int index,
String name,
CsvSchema.ColumnType type,
int arrayElementSep)
Deprecated.
use variant where `arrayElementSep` is
String |
Column(int index,
String name,
CsvSchema.ColumnType type,
String arrayElementSep) |
Copyright © 2019 FasterXML. All rights reserved.