Uses of Enum Class
com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
Packages that use CsvSchema.ColumnType
-
Uses of CsvSchema.ColumnType in com.fasterxml.jackson.dataformat.csv
Fields in com.fasterxml.jackson.dataformat.csv declared as CsvSchema.ColumnTypeMethods in com.fasterxml.jackson.dataformat.csv that return CsvSchema.ColumnTypeModifier and TypeMethodDescriptionprotected CsvSchema.ColumnType
CsvMapper._determineType
(Class<?> propType) CsvSchema.Column.getType()
static CsvSchema.ColumnType
Returns the enum constant of this class with the specified name.static CsvSchema.ColumnType[]
CsvSchema.ColumnType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.fasterxml.jackson.dataformat.csv with parameters of type CsvSchema.ColumnTypeModifier and TypeMethodDescriptionCsvSchema.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.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.setColumnType
(int index, CsvSchema.ColumnType type) CsvSchema.Column.withType
(CsvSchema.ColumnType newType) Constructors in com.fasterxml.jackson.dataformat.csv with parameters of type CsvSchema.ColumnTypeModifierConstructorDescriptionColumn
(int index, String name, CsvSchema.ColumnType type) Column
(int index, String name, CsvSchema.ColumnType type, int arrayElementSep) Deprecated.Column
(int index, String name, CsvSchema.ColumnType type, String arrayElementSep)
String