Uses of Class
com.fasterxml.jackson.dataformat.csv.CsvSchema.ColumnType

Packages that use CsvSchema.ColumnType
com.fasterxml.jackson.dataformat.csv   
 

Uses of CsvSchema.ColumnType in com.fasterxml.jackson.dataformat.csv
 

Methods in com.fasterxml.jackson.dataformat.csv that return CsvSchema.ColumnType
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.
 

Methods in com.fasterxml.jackson.dataformat.csv with parameters of type CsvSchema.ColumnType
 CsvSchema.Builder CsvSchema.Builder.addColumn(String name, CsvSchema.ColumnType type)
           
 CsvSchema.Builder CsvSchema.Builder.setColumnType(int index, CsvSchema.ColumnType type)
           
 CsvSchema.Column CsvSchema.Column.withType(CsvSchema.ColumnType newType)
           
 

Constructors in com.fasterxml.jackson.dataformat.csv with parameters of type CsvSchema.ColumnType
CsvSchema.Column(int index, String name, CsvSchema.ColumnType type)
           
CsvSchema.Column(int index, String name, CsvSchema.ColumnType type, int arrayElementSep)
          Deprecated. use #Column(int, String, ColumnType, String) instead
CsvSchema.Column(int index, String name, CsvSchema.ColumnType type, String arrayElementSep)
           
 



Copyright © 2016 FasterXML. All rights reserved.