Class UnicodeUnpairedSurrogateRemover
java.lang.Object
org.apache.commons.text.translate.CharSequenceTranslator
org.apache.commons.text.translate.CodePointTranslator
org.apache.commons.text.translate.UnicodeUnpairedSurrogateRemover
Helper subclass to CharSequenceTranslator to remove unpaired surrogates.
- Since:
- 1.0
-
Constructor Summary
-
Method Summary
Methods inherited from class org.apache.commons.text.translate.CodePointTranslator
translate
Methods inherited from class org.apache.commons.text.translate.CharSequenceTranslator
hex, translate, translate, with
-
Constructor Details
-
UnicodeUnpairedSurrogateRemover
public UnicodeUnpairedSurrogateRemover()
-
-
Method Details
-
translate
Implementation of translate that throws out unpaired surrogates. Translates the specified code point into another.- Specified by:
translate
in classCodePointTranslator
- Parameters:
codePoint
- int character input to translatewriter
- Writer to optionally push the translated output to- Returns:
- boolean as to whether translation occurred or not
- Throws:
IOException
- if and only if the Writer produces an IOException
-