Collator.FullDecomposition Field

Definition

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 = 2

Implements

Java.Util.IComparator._members Java.Util.IComparator.cb_reversed Java.Util.IComparator.cb_thenComparing_Ljava_util_Comparator_ Java.Util.IComparator.cb_thenComparing_Ljava_util_function_Function_Ljava_util_Comparator_ Java.Util.IComparator.cb_thenComparing_Ljava_util_function_Function_ Java.Util.IComparator.cb_thenComparingDouble_Ljava_util_function_ToDoubleFunction_ Java.Util.IComparator.cb_thenComparingInt_Ljava_util_function_ToIntFunction_ Java.Util.IComparator.cb_thenComparingLong_Ljava_util_function_ToLongFunction_
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.

Applies to