Uses of Interface
org.springframework.batch.infrastructure.item.file.LineMapper
Packages that use LineMapper
Package
Description
Infrastructure implementations of io file concerns.
Builders for file item readers and writers.
Infrastructure implementations of io file support mapping concerns.
-
Uses of LineMapper in org.springframework.batch.infrastructure.item.file
Methods in org.springframework.batch.infrastructure.item.file with parameters of type LineMapperModifier and TypeMethodDescriptionvoidFlatFileItemReader.setLineMapper(LineMapper<T> lineMapper) Setter for line mapper.Constructors in org.springframework.batch.infrastructure.item.file with parameters of type LineMapperModifierConstructorDescriptionFlatFileItemReader(LineMapper<T> lineMapper) Create a newFlatFileItemReaderwith aLineMapper.FlatFileItemReader(org.springframework.core.io.Resource resource, LineMapper<T> lineMapper) -
Uses of LineMapper in org.springframework.batch.infrastructure.item.file.builder
Methods in org.springframework.batch.infrastructure.item.file.builder with parameters of type LineMapperModifier and TypeMethodDescriptionFlatFileItemReaderBuilder.lineMapper(LineMapper<T> lineMapper) ALineMapperimplementation to be used. -
Uses of LineMapper in org.springframework.batch.infrastructure.item.file.mapping
Classes in org.springframework.batch.infrastructure.item.file.mapping that implement LineMapperModifier and TypeClassDescriptionclassTwo-phaseLineMapperimplementation consisting of tokenization of the line intoFieldSetfollowed by mapping to item.classInterpret a line as a JSON object and parse it up to a Map.classPass throughLineMapperuseful for passing the originalStringback directly rather than a mapped object.classALineMapperimplementation that stores a mapping of String patterns to delegateLineTokenizers as well as a mapping of String patterns to delegateFieldSetMappers.