Uses of Interface
com.opencsv.bean.CsvConverter
Packages that use CsvConverter
-
Uses of CsvConverter in com.opencsv.bean
Classes in com.opencsv.bean that implement CsvConverterModifier and TypeClassDescriptionclass
This implementation ofCsvConverter
provides a reasonable default forconvertToWrite(java.lang.Object)
as well as a couple of common fields.class
This class converts an input ISO 4217 currency code to aCurrency
instance.class
This class converts an input to a date type.class
This class converts an input to an enumeration type and vice versa.class
This converter class is used in combination withCsvNumber
, that is, when number inputs and outputs should be formatted.class
This class wraps fields from the reflection API in order to handle translation of primitive types and to add a "required" flag.class
This class converts an String to aUUID
instance.Fields in com.opencsv.bean declared as CsvConverterModifier and TypeFieldDescriptionprotected CsvConverter
AbstractBeanField.converter
A class that converts from a string to the destination type on reading and vice versa on writing.Methods in com.opencsv.bean that return CsvConverterModifier and TypeMethodDescriptionprotected CsvConverter
AbstractMappingStrategy.determineConverter
(Field field, Class<?> elementType, String locale, String writeLocale, Class<? extends AbstractCsvConverter> customConverter) Given the information provided, determines the appropriate built-in converter to be passed in to theBeanField
being created.Constructors in com.opencsv.bean with parameters of type CsvConverterModifierConstructorDescriptionAbstractBeanField
(Class<?> type, Field field, boolean required, Locale errorLocale, CsvConverter converter) BeanFieldJoin
(Class<?> type, Field field, boolean required, Locale errorLocale, CsvConverter converter, Class<? extends org.apache.commons.collections4.MultiValuedMap> mapType, String capture, String format) Creates a new instance.BeanFieldJoinIntegerIndex
(Class<?> type, Field field, boolean required, Locale errorLocale, CsvConverter converter, Class<? extends org.apache.commons.collections4.MultiValuedMap> mapType, String capture, String format) Creates a new instance.BeanFieldJoinStringIndex
(Class<?> type, Field field, boolean required, Locale errorLocale, CsvConverter converter, Class<? extends org.apache.commons.collections4.MultiValuedMap> mapType, String capture, String format) Creates a new instance.BeanFieldSingleValue
(Class<?> type, Field field, boolean required, Locale errorLocale, CsvConverter converter, String capture, String format) Simply calls the same constructor in the base class.BeanFieldSplit
(Class<?> type, Field field, boolean required, Locale errorLocale, CsvConverter converter, String splitOn, String writeDelimiter, Class<? extends Collection> collectionType, Class<?> elementType, String capture, String format) The only valid constructor.