Uses of Class
com.taleo.integration.client.customstep.util.csv.InvalidCSVFileFormat

Packages that use InvalidCSVFileFormat
com.taleo.integration.client.customstep.csv   
com.taleo.integration.client.customstep.util.csv   
 

Uses of InvalidCSVFileFormat in com.taleo.integration.client.customstep.csv
 

Methods in com.taleo.integration.client.customstep.csv that throw InvalidCSVFileFormat
protected  java.io.File MergePostStep.childMerge(java.io.File inFile)
          Merge the files corresponding to the filePattern with the provided inFile.
protected  java.io.File DifferencePostStep.difference(java.io.File sourceFile, java.io.File targetFile)
          Calculate the difference, i.e.
 void ReplaceAllPostStep.execute(java.io.File inFile, java.io.File outFile)
          Copy the input file to the output file while applying the required replacements.
 void RemoveEmptyLinesPostStep.execute(java.io.File inFile, java.io.File outFile)
          Copy the input file to the output file while removing empty lines.
 void ForceQuotationPostStep.execute(java.io.File inFile, java.io.File outFile)
          Copy the input file to the output file while forcing quotation.
 void FixedLengthPostStep.execute(java.io.File inFile, java.io.File outFile)
          Copy the input file to the output file while applying the columns formatting.
 void CsvToXmlPreStep.execute(java.io.File inFile, java.io.File outFile)
          Create the XML file.
 void BaseTransformPostStep.execute(java.io.File inFile, java.io.File outFile)
          Copy the input file to the output file while applying the required transformation.
 void AbstractSortStep.execute(java.io.File inFile, java.io.File outFile)
          Copy the input file to the output file while applying the required sorting.
protected  int BaseCustomCsvStep.getColumnIndex(java.io.File file, java.lang.String column)
          Get the index of the specified column in the file.
protected  java.lang.String BaseCustomCsvStep.getColumnName(java.io.File file, java.lang.String column)
          Get the name of the specified column in the file.
protected  java.util.Comparator HierarchicalSortStep.getComparator(java.io.File file)
           
protected abstract  java.util.Comparator AbstractSortStep.getComparator(java.io.File file)
          Get the comparator for the CSV rows.
protected  java.io.File MergePostStep.merge(java.io.File inFile)
          Merge the files corresponding to the filePattern with the provided inFile.
protected  void DifferencePostStep.sort(java.io.File inFile, java.io.File outFile, int[] indexes)
          Sort the inFile and write result to the outFile, removing all duplicates.
protected  void MergePostStep.sort(java.io.File inFile, java.io.File outFile, int[] indexes, boolean removeDuplicates)
          Sort the inFile and write result to the outFile, removing duplicates if required.
 

Uses of InvalidCSVFileFormat in com.taleo.integration.client.customstep.util.csv
 

Methods in com.taleo.integration.client.customstep.util.csv that throw InvalidCSVFileFormat
 java.util.List CSVReader.getHeadingNames()
          Get the list of headers.
static java.lang.String[] CsvUtils.readFirstLine(java.io.Reader reader, char csvDelimiter, char csvQuoteCharacter)
          Read the first line from the given reader.
 boolean CSVReader.readLine(java.util.List pLine)
          Read a single line.
 boolean CSVReader.readLine(java.util.List pLine, char pDelimiter, char pQuoteCaracter, java.lang.String pLineFeed)
          Read a single line.
 boolean CSVReader.readLine(java.util.Map pLine)
          Read a line of the csv file and populate the values in the list argument.
static java.lang.String[] CsvUtils.readLine(java.io.Reader reader, char csvDelimiter, char csvQuoteCharacter, int lineNumber)
          Read the given line number from the given reader.
 boolean CSVReader.readLineTaleo(java.util.List pLine, char pDelimiter, char pQuoteCaracter)
          Read a single line.
 java.util.Properties CsvPropertiesSectionReader.readProperties()
          Read the properties section and put values in a Properties object.
 void MergeSort.sort(java.io.File inFile, java.util.Comparator comparator, java.io.File outFile)
          Sort the inFile according to the given Comparator and write result in the outFile.