Uses of Class
com.Ostermiller.util.BadDelimiterException
-
Uses of BadDelimiterException in com.Ostermiller.util
Methods in com.Ostermiller.util that throw BadDelimiterExceptionModifier and TypeMethodDescriptionvoidCSVLexer.changeDelimiter(char newDelim) Change this Lexer so that it uses a new delimiter.voidCSVParse.changeDelimiter(char newDelim) Change this parser so that it uses a new delimiter.voidCSVParser.changeDelimiter(char newDelim) Change this parser so that it uses a new delimiter.voidCSVPrint.changeDelimiter(char newDelimiter) Change this printer so that it uses a new delimiter.voidCSVPrinter.changeDelimiter(char newDelimiter) Change this printer so that it uses a new delimiter.voidExcelCSVParser.changeDelimiter(char newDelim) Change this parser so that it uses a new delimiter.voidExcelCSVPrinter.changeDelimiter(char newDelimiter) Change this printer so that it uses a new delimiter.voidLabeledCSVParser.changeDelimiter(char newDelim) Change this parser so that it uses a new delimiter.static String[][]Parse the comma delimited data from a stream.static String[][]CSVParser.parse(Reader in, char delimiter, String escapes, String replacements, String commentDelims) Parse the delimited data from a stream.static String[][]Parse the delimited data from a string.static String[][]CSVParser.parse(String s, char delimiter, String escapes, String replacements, String commentDelims) Parse the delimited data from a string.static String[][]Parse the delimited data from a stream.static String[][]Parse the delimited data from a string.Constructors in com.Ostermiller.util that throw BadDelimiterExceptionModifierConstructorDescriptionCSVParser(InputStream in, char delimiter) Create a parser to parse delimited values from an InputStream.CSVParser(InputStream in, char delimiter, String escapes, String replacements, String commentDelims) Create a parser to parse delimited values from an InputStream.Create a parser to parse delimited values from a Reader.Create a parser to parse delimited values from a Reader.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.ExcelCSVParser(InputStream in, char delimiter) Create a parser to parse delimited values from an InputStream.ExcelCSVParser(Reader in, char delimiter) Create a parser to parse delimited values from a Reader.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.