| java.lang.Object net.sf.saxon.codenorm.NormalizerData
NormalizerData | public class NormalizerData (Code) | | Accesses the Normalization Data used for Forms C and D.
Copyright © 1998-1999 Unicode, Inc. All Rights Reserved.
The Unicode Consortium makes no expressed or implied warranty of any
kind, and assumes no liability for errors or omissions.
No liability is assumed for incidental and consequential damages
in connection with or arising out of the use of the information here.
author: Mark Davis |
NOT_COMPOSITE | final public static int NOT_COMPOSITE(Code) | | Constant for use in getPairwiseComposition
|
getCanonicalClass | public int getCanonicalClass(int ch)(Code) | | Gets the combining class of a character from the
Unicode Character Database.
Parameters: ch - the source character value from 0 to 255 |
getExcluded | boolean getExcluded(char ch)(Code) | | Just accessible for testing.
|
getPairwiseComposition | public char getPairwiseComposition(int first, int second)(Code) | | Returns the composite of the two characters. If the two
characters don't combine, returns NOT_COMPOSITE.
Only has to worry about BMP characters, since those are the only ones that can ever compose.
Parameters: first - first character (e.g. 'c') Parameters: first - second character (e.g. '¸' cedilla) composite (e.g. 'ç') |
getRawDecompositionMapping | String getRawDecompositionMapping(char ch)(Code) | | Just accessible for testing.
|
getRecursiveDecomposition | public void getRecursiveDecomposition(boolean canonical, int ch, StringBuffer buffer)(Code) | | Gets recursive decomposition of a character from the
Unicode Character Database.
Parameters: canonical - If truebit is on in this byte, then selects the recursivecanonical decomposition, otherwise selectsthe recursive compatibility and canonical decomposition. Parameters: ch - the source character Parameters: buffer - buffer to be filled with the decomposition |
|
|