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 TypeMethodDescriptionvoid
FlatFileItemReader.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 newFlatFileItemReader
with 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) ALineMapper
implementation 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 TypeClassDescriptionclass
Two-phaseLineMapper
implementation consisting of tokenization of the line intoFieldSet
followed by mapping to item.class
Interpret a line as a JSON object and parse it up to a Map.class
Pass throughLineMapper
useful for passing the originalString
back directly rather than a mapped object.class
ALineMapper
implementation that stores a mapping of String patterns to delegateLineTokenizer
s as well as a mapping of String patterns to delegateFieldSetMapper
s.