Java com.fasterxml.jackson.dataformat.csv CsvMapper fields, constructors, methods, implement or subclass

Example usage for Java com.fasterxml.jackson.dataformat.csv CsvMapper fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.fasterxml.jackson.dataformat.csv CsvMapper.

The text is from its open source code.

Constructor

Method

voidaddMixInAnnotations(Class target, Class mixinSource)
Method to use for adding mix-in annotations to use for augmenting specified class or interface.
CsvMapperconfigure(CsvGenerator.Feature f, boolean state)
CsvMapperconfigure(CsvParser.Feature f, boolean state)
CsvMapperenable(CsvGenerator.Feature f)
CsvMapperenable(CsvParser.Feature f)
ObjectReaderreader(DeserializationFeature feature)
Factory method for constructing ObjectReader with specified feature enabled (compared to settings that this mapper instance has).
ObjectReaderreaderWithSchemaFor(Class pojoType)
Convenience method which is functionally equivalent to:
 reader(pojoType).withSchema(schemaFor(pojoType)); 
that is, constructs a ObjectReader which both binds to specified type and uses "loose" CsvSchema introspected from specified type (one without strict inferred typing).
CsvSchemaschemaFor(JavaType pojoType)
Method that can be used to determine a CSV schema to use for given POJO type, using default serialization settings including ordering.
CsvSchemaschemaFor(Class pojoType)
CsvSchemaschemaFor(TypeReference pojoTypeRef)
ObjectMappersetDateFormat(DateFormat dateFormat)
Method for configuring the default DateFormat to use when serializing time values as Strings, and deserializing from JSON Strings.
ObjectWriterwriter(SerializationFeature feature)
Factory method for constructing ObjectWriter with specified feature enabled (compared to settings that this mapper instance has).
ObjectWriterwriter()
Convenience method for constructing ObjectWriter with default settings.
StringwriteValueAsString(Object value)
Method that can be used to serialize any Java value as a String.