Uses of Class
planetj.helpers.CSVFileDescriptor

Packages that use CSVFileDescriptor
planetj.database   
planetj.helpers   
 

Uses of CSVFileDescriptor in planetj.database
 

Methods in planetj.database with parameters of type CSVFileDescriptor
 StringBuffer RowCollection.toCSV(CSVFileDescriptor pCSVFileDescriptor)
          Returns a StringBuffer in CSV format containing all data in this RowCollection.
 StringBuffer RowCollection.toCSV(boolean pIncludeColumnHeadings, CSVFileDescriptor pCSVFileDescriptor)
          Deprecated.  
 StringBuffer RowCollection.toDOC(CSVFileDescriptor pFileDescriptor)
          Returns a StringBuffer in Microsoft Word .doc format containing all data in this RowCollection.
 StringBuffer RowCollection.toDOC(boolean pIncludeColumnHeadings, CSVFileDescriptor pFileDescriptor)
          Deprecated.  
 StringBuffer Row.toCSV(boolean pIncludeColumnHeadings, CSVFileDescriptor pCSVFileDescriptor)
          Returns a StringBuffer in CSV format containing all data in this Row Creation date: (2/6/2002 5:14:39 PM)
 StringBuffer Row.toDOC(boolean pIncludeColumnHeadings, CSVFileDescriptor pFileDescriptor)
          Deprecated. Use the single argument method instead
 StringBuffer Row.toDOC(CSVFileDescriptor pFileDescriptor)
          Returns a StringBuffer in Microsoft Word .doc format containing all data in this RowCollection.
 

Uses of CSVFileDescriptor in planetj.helpers
 

Methods in planetj.helpers that return CSVFileDescriptor
static CSVFileDescriptor CSVHelper.newCSVFileDescriptor()
          This is the only way to get an instance of a new CSVFileDescriptor Creation date: (12/5/2001 3:15:14 PM)
static CSVFileDescriptor CSVHelper.newCSVFileDescriptor(FilePropertyGroup pProperties)
          This is the only way to get an instance of a new CSVFileDescriptor Creation date: (12/5/2001 3:15:14 PM)
 

Methods in planetj.helpers with parameters of type CSVFileDescriptor
 StringBuffer DOCHelper.generateDOCFile(List pList, CSVFileDescriptor pCSVFileDescriptor)
          This method will generate a CSV/DOC file with CSV/DOC data supplied in pList.get(i).toString() if pList.elementAt(i) is not a ICSVField, ICSVRow or List.
 StringBuffer DOCHelper.generateDOCFile(ICSVRow pCSVRow, CSVFileDescriptor pCSVFileDescriptor)
          This method will generate a CSV/DOC file with CSV/DOC data supplied in pCSVRow.getCSVRow().
 StringBuffer CSVHelper.generateCSVFile(List pList, CSVFileDescriptor pCSVFileDescriptor)
          This method will generate a CSV file with CSV data supplied in pList.get(i).toString() if pList.elementAt(i) is not a ICSVField, ICSVRow or List.
 StringBuffer CSVHelper.generateCSVFile(ICSVRow pCSVRow, CSVFileDescriptor pCSVFileDescriptor)
          This method will generate a CSV file with CSV data supplied in pCSVRow.getCSVRow().
 StringBuffer CSVHelper.getCSVData(List pList, CSVFileDescriptor pCSVFileDescriptor)
          Converts an List of items into a String containing CSV data.
 StringBuffer CSVHelper.getCSVData(ICSVRow pCSVRow, CSVFileDescriptor pCSVFileDescriptor)
          Converts an ICSVRow into a String containing CSV data.