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, setRecordTerminatorpublic FixedLengthRecordParserFactory()
public void init()
throws BeanIOConfigurationException
RecordParserFactoryinit in interface RecordParserFactoryBeanIOConfigurationExceptionpublic RecordReader createReader(Reader in) throws IllegalArgumentException
RecordParserFactorycreateReader in interface RecordParserFactoryin - the input stream to read fromRecordReaderIllegalArgumentException - if this factory is improperly configured
and a RecordReader cannot be createdpublic RecordWriter createWriter(Writer out) throws IllegalArgumentException
RecordParserFactorycreateWriter in interface RecordParserFactoryout - the output stream to write toRecordWriterIllegalArgumentException - if this factory is improperly configured
and a RecordWriter cannot be createdpublic RecordMarshaller createMarshaller() throws IllegalArgumentException
RecordParserFactorycreateMarshaller in interface RecordParserFactoryRecordMarshallerIllegalArgumentException - if this factory is improperly configured and
a RecordMarshaller cannot be createdpublic RecordUnmarshaller createUnmarshaller() throws IllegalArgumentException
RecordParserFactorycreateUnmarshaller in interface RecordParserFactoryRecordUnmarshallerIllegalArgumentException - if this factory is improperly configured and
a RecordUnmarshaller cannot be created