Uses of Class
org.jmonks.batch.io.ReaderRecord

Packages that use ReaderRecord
org.jmonks.batch.io Defines API for the clients to read records from the file and write records into the file. 
org.jmonks.batch.io.flat Flat file implementation for the IO API. 
org.jmonks.batch.io.xml XML file implementation for the IO API. 
 

Uses of ReaderRecord in org.jmonks.batch.io
 

Methods in org.jmonks.batch.io that return ReaderRecord
abstract  ReaderRecord FileReader.getNextRecord()
           Gets the next available record from the file.
 

Uses of ReaderRecord in org.jmonks.batch.io.flat
 

Subclasses of ReaderRecord in org.jmonks.batch.io.flat
 class FlatFileReader.FlatFileReaderRecord
          FixedWidthFlatFileReaderRecord implements ReaderRecord by maintaing the field names and values as a map and provides the methods with proper access privileges to read into and write from the record.
 

Methods in org.jmonks.batch.io.flat that return ReaderRecord
 ReaderRecord FlatFileReader.getNextRecord()
           Gets the next available record from the file and returns it wrapped with the appropriate ReaderRecod object to easily access the data fields from the record.
protected abstract  ReaderRecord FlatFileReader.parseRecord(java.lang.String recordString)
          Parses the given record string based on the record spec, translates it into the appropriate ReaderRecord and returns that reader record.
protected  ReaderRecord FixedWidthFlatFileReader.parseRecord(java.lang.String recordString)
          Parses the given record string, translates it into the proper ReaderRecord and returns the reader record.
protected  ReaderRecord DelimitedFlatFileReader.parseRecord(java.lang.String recordString)
          Parses the given record string where fields are delimited by a special character and returns the reader record.
 

Uses of ReaderRecord in org.jmonks.batch.io.xml
 

Subclasses of ReaderRecord in org.jmonks.batch.io.xml
 class XMLFileReader.XMLReaderRecord
          XMLReaderRecord implements ReaderRecord by maintaing the field names and values as a map and provides the methods with proper access privileges to read into and write from the record.
 

Methods in org.jmonks.batch.io.xml that return ReaderRecord
 ReaderRecord XMLFileReader.getNextRecord()
          Gets the next available record from the file.
 ReaderRecord XMLFileReader.XMLReaderRecord.readComplexElement(java.lang.String elementName)
          Expectes the element as a nested/composite element and returns it as a reader record.