@NonNullApi
Package org.springframework.batch.item.file.mapping
Infrastructure implementations of io file support mapping concerns.
Interface Summary Interface Description FieldSetMapper<T> Interface that is used to map data obtained from aFieldSetinto an object.Class Summary Class Description ArrayFieldSetMapper A basic array mapper, returning the values backing a fieldset.BeanWrapperFieldSetMapper<T> FieldSetMapperimplementation based on bean property paths.DefaultLineMapper<T> Two-phaseLineMapperimplementation consisting of tokenization of the line intoFieldSetfollowed by mapping to item.JsonLineMapper Interpret a line as a JSON object and parse it up to a Map.PassThroughFieldSetMapper Pass throughFieldSetMapperuseful for passing aFieldSetback directly rather than a mapped object.PassThroughLineMapper Pass throughLineMapperuseful for passing the originalStringback directly rather than a mapped object.PatternMatchingCompositeLineMapper<T> ALineMapperimplementation that stores a mapping of String patterns to delegateLineTokenizers as well as a mapping of String patterns to delegateFieldSetMappers.