Uses of Record Class
org.csvobjects.csv.mapping.CSVFieldMapping
Packages that use CSVFieldMapping
Package
Description
Internal mapping model and XML parser components for CSV-to-POJO mappings.
-
Uses of CSVFieldMapping in org.csvobjects.csv.mapping
Methods in org.csvobjects.csv.mapping that return CSVFieldMappingModifier and TypeMethodDescriptionCSVFieldMapping.Builder.build()Builds the immutable field mapping.CSVFieldMapping.withBeanReference(CSVBeanMapping newBeanReference) Returns a copy of this field mapping with the resolved bean reference set.CSVFieldMapping.withBeanReferenceName(String newBeanReferenceName) Returns a copy of this field mapping with the declarative bean reference name replaced (for example, reset to"none"when the referenced bean cannot be resolved).CSVFieldMapping.withFormatter(CSVFieldFormatter newFormatter) Returns a copy of this field mapping with the resolved formatter set.Methods in org.csvobjects.csv.mapping that return types with arguments of type CSVFieldMappingModifier and TypeMethodDescriptionCSVBeanMapping.fieldMappings()Returns the value of thefieldMappingsrecord component.CSVBeanMapping.iterator()Provides an iterator over the CSV field mappings present in this bean mapping.Methods in org.csvobjects.csv.mapping with parameters of type CSVFieldMappingModifier and TypeMethodDescriptionCSVBeanMapping.Builder.addFieldMapping(CSVFieldMapping fieldMapping) Adds a new field mapping for this bean mapping.intCSVFieldMapping.compareTo(CSVFieldMapping other) Compares this field mapping to another mapping.Method parameters in org.csvobjects.csv.mapping with type arguments of type CSVFieldMappingModifier and TypeMethodDescriptionCSVBeanMapping.withFieldMappings(Collection<CSVFieldMapping> newFieldMappings) Returns a copy of this bean mapping with its field mappings replaced, for example once formatters and bean references have been resolved for each field.Constructor parameters in org.csvobjects.csv.mapping with type arguments of type CSVFieldMappingModifierConstructorDescriptionCSVBeanMapping(String beanName, String beanClass, boolean csvHeaderPresent, SortedSet<CSVFieldMapping> fieldMappings, int maxFieldPosition) Compact constructor which normalizes the trimmable string attributes and defensively copies the field mapping set into an unmodifiable snapshot.