Package org.apache.commons.lang3
Class StringEscapeUtils.CsvUnescaper
- java.lang.Object
-
- org.apache.commons.lang3.text.translate.CharSequenceTranslator
-
- org.apache.commons.lang3.StringEscapeUtils.CsvUnescaper
-
- Enclosing class:
- StringEscapeUtils
static class StringEscapeUtils.CsvUnescaper extends CharSequenceTranslator
-
-
Field Summary
Fields Modifier and Type Field Description private static char
CSV_DELIMITER
private static char
CSV_QUOTE
private static java.lang.String
CSV_QUOTE_STR
private static char[]
CSV_SEARCH_CHARS
-
Constructor Summary
Constructors Constructor Description CsvUnescaper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
translate(java.lang.CharSequence input, int index, java.io.Writer out)
Translate a set of codepoints, represented by an int index into a CharSequence, into another set of codepoints.-
Methods inherited from class org.apache.commons.lang3.text.translate.CharSequenceTranslator
hex, translate, translate, with
-
-
-
-
Field Detail
-
CSV_DELIMITER
private static final char CSV_DELIMITER
- See Also:
- Constant Field Values
-
CSV_QUOTE
private static final char CSV_QUOTE
- See Also:
- Constant Field Values
-
CSV_QUOTE_STR
private static final java.lang.String CSV_QUOTE_STR
-
CSV_SEARCH_CHARS
private static final char[] CSV_SEARCH_CHARS
-
-
Method Detail
-
translate
public int translate(java.lang.CharSequence input, int index, java.io.Writer out) throws java.io.IOException
Description copied from class:CharSequenceTranslator
Translate a set of codepoints, represented by an int index into a CharSequence, into another set of codepoints. The number of codepoints consumed must be returned, and the only IOExceptions thrown must be from interacting with the Writer so that the top level API may reliably ignore StringWriter IOExceptions.- Specified by:
translate
in classCharSequenceTranslator
- Parameters:
input
- CharSequence that is being translatedindex
- int representing the current point of translationout
- Writer to translate the text to- Returns:
- int count of codepoints consumed
- Throws:
java.io.IOException
- if and only if the Writer produces an IOException
-
-