Uses of Enum
com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType
Packages that use CsvSchema.ColumnType
-
Uses of CsvSchema.ColumnType in com.fasterxml.jackson.dataformat.csv
Subclasses with type arguments of type CsvSchema.ColumnType in com.fasterxml.jackson.dataformat.csvModifier and TypeClassDescriptionstatic enumEnumeration that defines optional type indicators that can be passed with schema.Fields in com.fasterxml.jackson.dataformat.csv declared as CsvSchema.ColumnTypeMethods in com.fasterxml.jackson.dataformat.csv that return CsvSchema.ColumnTypeModifier and TypeMethodDescriptionprotected CsvSchema.ColumnTypeCsvMapper._determineType(Class<?> propType) CsvSchema.Column.getType()static CsvSchema.ColumnTypeReturns 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.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, String arrayElementSep)