Class ArrayFieldSetMapper
java.lang.Object
org.springframework.batch.item.file.mapping.ArrayFieldSetMapper
- All Implemented Interfaces:
FieldSetMapper<String[]>
A basic array mapper, returning the values backing a fieldset. Useful for reading the
Strings resulting from the line tokenizer without having to deal with a
FieldSet
object.- Author:
- Costin Leau
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionString[]
mapFieldSet
(FieldSet fieldSet) Method used to map data obtained from aFieldSet
into an object.
-
Constructor Details
-
ArrayFieldSetMapper
public ArrayFieldSetMapper()
-
-
Method Details
-
mapFieldSet
Description copied from interface:FieldSetMapper
Method used to map data obtained from aFieldSet
into an object.- Specified by:
mapFieldSet
in interfaceFieldSetMapper<String[]>
- Parameters:
fieldSet
- theFieldSet
to map- Returns:
- the populated object
- Throws:
org.springframework.validation.BindException
- if there is a problem with the binding
-