Uses of Enum Class
tools.jackson.dataformat.csv.CsvSchema.ColumnType
Packages that use CsvSchema.ColumnType
-
Uses of CsvSchema.ColumnType in tools.jackson.dataformat.csv
Subclasses with type arguments of type CsvSchema.ColumnType in tools.jackson.dataformat.csvModifier and TypeClassDescriptionstatic enumEnumeration that defines optional type indicators that can be passed with schema.Fields in tools.jackson.dataformat.csv declared as CsvSchema.ColumnTypeMethods in tools.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 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 tools.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.addColumn(String name, CsvSchema.ColumnType type, UnaryOperator<CsvSchema.Column> transformer) Add column with given name, and with changes to apply (as specified by second argument,transformer).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 tools.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)