public class FixedLengthRecordParserFactory extends FixedLengthParserConfiguration implements RecordParserFactory
RecordParserFactory
for the fixed length stream format.Constructor and Description |
---|
FixedLengthRecordParserFactory()
Constructs a new FixedLengthRecordParserFactory.
|
Modifier and Type | Method and Description |
---|---|
RecordMarshaller |
createMarshaller()
Creates a parser for marshalling records.
|
RecordReader |
createReader(Reader in)
Creates a parser for reading records from an input stream.
|
RecordUnmarshaller |
createUnmarshaller()
Creates a parser for unmarshalling records.
|
RecordWriter |
createWriter(Writer out)
Creates a parser for writing records to an output stream.
|
void |
init()
Initializes the factory.
|
getComments, getLineContinuationCharacter, getLineSeparator, getRecordTerminator, isCommentEnabled, isLineContinationEnabled, setComments, setLineContinuationCharacter, setLineSeparator, setRecordTerminator
public FixedLengthRecordParserFactory()
public void init() throws BeanIOConfigurationException
RecordParserFactory
init
in interface RecordParserFactory
BeanIOConfigurationException
public RecordReader createReader(Reader in) throws IllegalArgumentException
RecordParserFactory
createReader
in interface RecordParserFactory
in
- the input stream to read fromRecordReader
IllegalArgumentException
- if this factory is improperly configured
and a RecordReader
cannot be createdpublic RecordWriter createWriter(Writer out) throws IllegalArgumentException
RecordParserFactory
createWriter
in interface RecordParserFactory
out
- the output stream to write toRecordWriter
IllegalArgumentException
- if this factory is improperly configured
and a RecordWriter
cannot be createdpublic RecordMarshaller createMarshaller() throws IllegalArgumentException
RecordParserFactory
createMarshaller
in interface RecordParserFactory
RecordMarshaller
IllegalArgumentException
- if this factory is improperly configured and
a RecordMarshaller
cannot be createdpublic RecordUnmarshaller createUnmarshaller() throws IllegalArgumentException
RecordParserFactory
createUnmarshaller
in interface RecordParserFactory
RecordUnmarshaller
IllegalArgumentException
- if this factory is improperly configured and
a RecordUnmarshaller
cannot be created