Uses of Interface
org.springframework.batch.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.item.file
Methods in org.springframework.batch.item.file with parameters of type LineMapperModifier and TypeMethodDescriptionvoid
FlatFileItemReader.setLineMapper
(LineMapper<T> lineMapper) Setter for line mapper. -
Uses of LineMapper in org.springframework.batch.item.file.builder
Methods in org.springframework.batch.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.item.file.mapping
Classes in org.springframework.batch.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.