Package net.sf.saxon.charcode
Class UnicodeCharacterSet
- java.lang.Object
-
- net.sf.saxon.charcode.UnicodeCharacterSet
-
- All Implemented Interfaces:
CharacterSet
public final class UnicodeCharacterSet extends java.lang.Object implements CharacterSet
This class defines properties of the Unicode character set
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UnicodeCharacterSetgetInstance()static intgetUTF8Encoding(char in, char in2, byte[] out)Static method to generate the UTF-8 representation of a Unicode characterbooleaninCharset(int c)Determine if a character is present in the character set
-
-
-
Method Detail
-
getInstance
public static UnicodeCharacterSet getInstance()
-
inCharset
public boolean inCharset(int c)
Description copied from interface:CharacterSetDetermine if a character is present in the character set- Specified by:
inCharsetin interfaceCharacterSet
-
getUTF8Encoding
public static int getUTF8Encoding(char in, char in2, byte[] out)Static method to generate the UTF-8 representation of a Unicode character- Parameters:
in- the Unicode character, or the high half of a surrogate pairin2- the low half of a surrogate pair (ignored unless the first argument is in the range for a surrogate pair)out- an array of at least 4 bytes to hold the UTF-8 representation.- Returns:
- the number of bytes in the UTF-8 representation
-
-