Collator.FullDecomposition Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Decomposition mode value.
[Android.Runtime.Register("FULL_DECOMPOSITION")]
public const int FullDecomposition = 2;
[<Android.Runtime.Register("FULL_DECOMPOSITION")>]
val mutable FullDecomposition : int
Field Value
Value = 2Implements
- Attributes
Remarks
Decomposition mode value. With FULL_DECOMPOSITION set, both Unicode canonical variants and Unicode compatibility variants will be decomposed for collation. This causes not only accented characters to be collated, but also characters that have special formats to be collated with their norminal form. For example, the half-width and full-width ASCII and Katakana characters are then collated together. FULL_DECOMPOSITION is the most complete and therefore the slowest decomposition mode.
FULL_DECOMPOSITION corresponds to Normalization Form KD as described in Unicode Standard Annex #15: Unicode Normalization Forms.
Java documentation for java.text.Collator.FULL_DECOMPOSITION
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.