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 TypeClassDescriptionclassThis implementation ofCsvConverterprovides a reasonable default forconvertToWrite(java.lang.Object)as well as a couple of common fields.classThis class converts an input ISO 4217 currency code to aCurrencyinstance.classThis class converts an input to a date type.classThis class converts an input to an enumeration type and vice versa.classThis converter class is used in combination withCsvNumber, that is, when number inputs and outputs should be formatted.classThis class wraps fields from the reflection API in order to handle translation of primitive types and to add a "required" flag.classThis class converts an String to aUUIDinstance.Fields in com.opencsv.bean declared as CsvConverterModifier and TypeFieldDescriptionprotected CsvConverterAbstractBeanField.converterA 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 CsvConverterAbstractMappingStrategy.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 theBeanFieldbeing 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.