Uses of Class
com.Ostermiller.util.BadQuoteException

  • Uses of BadQuoteException in com.Ostermiller.util

    Modifier and Type
    Method
    Description
    void
    CSVLexer.changeQuote(char newQuote)
    Change this Lexer so that it uses a new character for quoting.
    void
    CSVParse.changeQuote(char newQuote)
    Change this parser so that it uses a new character for quoting.
    void
    CSVParser.changeQuote(char newQuote)
    Change this parser so that it uses a new character for quoting.
    void
    CSVPrint.changeQuote(char newQuote)
    Change this printer so that it uses a new character for quoting.
    void
    CSVPrinter.changeQuote(char newQuote)
    Change this printer so that it uses a new character for quoting.
    void
    ExcelCSVParser.changeQuote(char newQuote)
    Change this parser so that it uses a new character for quoting.
    void
    ExcelCSVPrinter.changeQuote(char newQuote)
    Change this printer so that it uses a new character for quoting.
    void
    LabeledCSVParser.changeQuote(char newQuote)
    Change this parser so that it uses a new character for quoting.
    Constructors in com.Ostermiller.util that throw BadQuoteException
    Modifier
    Constructor
    Description
     
    CSVPrinter(Writer out, char commentStart, char quote, char delimiter)
    Create a printer that will print values to the given stream.
     
    CSVPrinter(Writer out, char commentStart, char quote, char delimiter, boolean alwaysQuote, boolean autoFlush)
    Create a printer that will print values to the given stream.
     
    CSVPrinter(Writer out, char commentStart, char quote, char delimiter, String lineEnding)
    Create a printer that will print values to the given stream.
     
    CSVPrinter(Writer out, char commentStart, char quote, char delimiter, String lineEnding, boolean alwaysQuote, boolean autoFlush)
    Create a printer that will print values to the given stream.
     
    ExcelCSVPrinter(Writer out, char quote, char delimiter)
    Create a printer that will print values to the given stream.
     
    ExcelCSVPrinter(Writer out, char quote, char delimiter, boolean alwaysQuote, boolean autoFlush)
    Create a printer that will print values to the given stream.
     
    ExcelCSVPrinter(Writer out, char quote, char delimiter, String lineEnding)
    Create a printer that will print values to the given stream.
     
    ExcelCSVPrinter(Writer out, char quote, char delimiter, String lineEnding, boolean alwaysQuote, boolean autoFlush)
    Create a printer that will print values to the given stream.