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

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

Fields in org.jmonks.batch.io declared as RecordType
static RecordType RecordType.HEADER
          Represents the header record and the value to be used in the record spec is "HEADER".
static RecordType RecordType.TRAILER
          Represents the header record and the value to be used in the record spec is "TRAILER".
static RecordType RecordType.DETAIL
          Represents the detailed record and the value to be used in the record spec is "DETAIL".
static RecordType RecordType.BLOCK_START
          Represents the starting record of the block and the value to be used in the record spec is "BLOCK-START".
static RecordType RecordType.BLOCK_END
          Represents the ending record of the block and the value to be used in the record spec is "BLOCK-END".
protected  RecordType RecordSpec.recordType
          Holds the type of the record this spec is representing.
 

Methods in org.jmonks.batch.io that return RecordType
static RecordType RecordType.toRecordType(java.lang.String recordType)
          Utility method returns the RecordType object matches to the given value.
 RecordType RecordSpec.getRecordType()
          Returns the record type of this record spec.
 RecordType Record.getRecordType()
          Gets the record type.
 

Methods in org.jmonks.batch.io with parameters of type RecordType
abstract  WriterRecord FileWriter.createWriterRecord(RecordType recordType)
          Creates the writer record to be used to fill all the field values and submit to the file writer to write the record into the file.
 RecordSpec FileSpec.getRecordSpec(RecordType recordType)
          Gets the record spec associated with the given record type.
 boolean FileSpec.isValidRecordType(RecordType recordType)
          Tells whether a record spec is exists with the given record type in the file spec.
 

Constructors in org.jmonks.batch.io with parameters of type RecordType
WriterRecord(RecordType recordType)
          Creates a new instance of WriterRecord by accepting the type of record.
RecordSpec(RecordType recordType)
          Constructs the RecordSpec object by accepting the RecordType.
Record(RecordType recordType)
          Creates the record by accepting the record type.
ReaderRecord(RecordType recordType)
          Constructs the ReaderRecord by accepting the record type.
 

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

Methods in org.jmonks.batch.io.flat with parameters of type RecordType
 WriterRecord FlatFileWriter.createWriterRecord(RecordType recordType)
          Creates the writer record assocites with the given record type.
 

Constructors in org.jmonks.batch.io.flat with parameters of type RecordType
FlatFileWriter.FlatFileWriterRecord(RecordType recordType)
          Constructs and initializes the writer record.
FlatFileReader.FlatFileReaderRecord(RecordType recordType, int fieldCount)
          Private constructor to make sure only reader can create the record.
FixedWidthFlatFileRecordSpec(RecordType recordType)
          Constructs the record spec by accepting the record type.
DelimitedFlatFileRecordSpec(RecordType recordType)
          Constructs the record spec by accepting the record type.
 

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

Methods in org.jmonks.batch.io.xml with parameters of type RecordType
 WriterRecord XMLFileWriter.createWriterRecord(RecordType recordType)
          Creates the writer record assocites with the given record type.
 

Constructors in org.jmonks.batch.io.xml with parameters of type RecordType
XMLRecordSpec(RecordType recordType)
          Constructs the XMLRecordSpec by using record type.