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

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

Methods in org.jmonks.batch.io that return FileWriter
static FileWriter FileWriter.getFileWriter(java.io.OutputStream outputStream, java.io.InputStream fileSpecInputStream)
           Factory method to get the file writer.
static FileWriter FileWriter.getFileWriter(java.io.OutputStream outputStream, FileSpec fileSpec)
           Factory method to get the file writer.
static FileWriter FileWriter.getFileWriter(java.io.Writer writer, java.io.InputStream fileSpecInputStream)
           Factory method to get the file writer.
static FileWriter FileWriter.getFileWriter(java.io.Writer writer, FileSpec fileSpec)
           Factory method to get the file writer.
 

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

Subclasses of FileWriter in org.jmonks.batch.io.flat
 class DelimitedFlatFileWriter
           DelimitedFlatFileWriter writes the file according to the given file spec with the data submitted in the form of WriterRecord's.
 class FixedWidthFlatFileWriter
           FixedWidthFlatFileWriter writes the file according to the given file spec with the data submitted in the form of WriterRecord's.
 class FlatFileWriter
           FlatFileWriter writes/generates the file according to the given file spec with the data submitted in the form of WriterRecord's.
 

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

Subclasses of FileWriter in org.jmonks.batch.io.xml
 class XMLFileWriter
           XMLFileWriter writes the specified xml file according to the given file spec with the the recrods submitted to write into the file.