Uses of Class
net.sf.jmatchparser.util.csv.AbstractCSVWriter

Packages that use AbstractCSVWriter
net.sf.jmatchparser.template This package contains the public interface of the jMatchParser template parser. 
net.sf.jmatchparser.util.csv This package contains utility classes useful for parsing and creating CSV and similar column-based files. 
 

Uses of AbstractCSVWriter in net.sf.jmatchparser.template
 

Methods in net.sf.jmatchparser.template with parameters of type AbstractCSVWriter
static void Parser.convertDOMToCSV(Document doc, AbstractCSVWriter[] writers)
          Convert a DOM Document to one or more CSV files.
 void Parser.parseToCSV(BufferedReader reader, AbstractCSVWriter writer)
          Parse a buffered reader to a CSV file.
 void Parser.parseToCSV(CharSequence file, AbstractCSVWriter writer)
          Parse a String or other char sequence to a CSV file.
 void Parser.parseToCSV(InputStream stream, String encoding, AbstractCSVWriter writer)
          Parse an input stream to a CSV file.
 

Uses of AbstractCSVWriter in net.sf.jmatchparser.util.csv
 

Subclasses of AbstractCSVWriter in net.sf.jmatchparser.util.csv
 class CSVReaderBuilder
          An AbstractCSVWriter where you can write records into and then call the CSVReaderBuilder.toReader() method to build an AbstractCSVReader that can read exactly these records.
 class CSVWriter
          Class to create CSV files.
 class FixedWidthCSVWriter
          Class to create fixed width CSV (Comma Separated Value) files, where every column has a fixed width and may optionally additionally delimited by separator characters.
 class PropertiesCSVWriter
          Class to create a Properties file as if it was a CSV (Comma Separated Value) file.
 class XMLCSVWriter
          Class to create an XML file as if it was a CSV (Comma Separated Value) file.
 

Methods in net.sf.jmatchparser.util.csv that return AbstractCSVWriter
static AbstractCSVWriter CSVFactory.createWriter(OutputStream out, String formatString)
          Create an AbstractCSVWriter from a format string.
 

Methods in net.sf.jmatchparser.util.csv with parameters of type AbstractCSVWriter
 void AbstractCSVReader.writeTo(AbstractCSVWriter writer)
          Write the complete content of this reader to the given AbstractCSVWriter and close both reader and writer.
 



Copyright © 2011. All Rights Reserved.