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

Packages that use RecordSpec
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 RecordSpec in org.jmonks.batch.io
 

Methods in org.jmonks.batch.io that return RecordSpec
 RecordSpec FileSpec.getRecordSpec(RecordType recordType)
          Gets the record spec associated with the given record type.
 

Methods in org.jmonks.batch.io with parameters of type RecordSpec
protected  boolean FileSpec.addRecordSpec(RecordSpec recordSpec)
          Adds the record spec to the file spec.
 

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

Subclasses of RecordSpec in org.jmonks.batch.io.flat
 class DelimitedFlatFileRecordSpec
           DelimitedFlatFileRecordSpec represents record-spec element in the file spec belongs to the delimited flat file type.
 class FixedWidthFlatFileRecordSpec
           FixedWidthFlatFileRecordSpec represents record-spec element in the file spec belongs to the fixed width flat file type.
 

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

Subclasses of RecordSpec in org.jmonks.batch.io.xml
 class XMLRecordSpec
           XMLRecordSpec represents record-spec element in the file spec belongs to the xml file type.
 

Methods in org.jmonks.batch.io.xml that return RecordSpec
static RecordSpec XMLRecordSpec.createXMLRecordSpec(org.w3c.dom.Element recordSpecElement)
          Factory method to create the xml record spec from the given DOM Element representing the record-spec element in the file spec.