Normalizer.IsNormalized Method

Definition

Overloads

IsNormalized(ICharSequence, Normalizer+Form)

Determines if the given sequence of char values is normalized.

IsNormalized(String, Normalizer+Form)

Determines if the given sequence of char values is normalized.

IsNormalized(ICharSequence, Normalizer+Form)

Determines if the given sequence of char values is normalized.

[Android.Runtime.Register("isNormalized", "(Ljava/lang/CharSequence;Ljava/text/Normalizer$Form;)Z", "")]
public static bool IsNormalized (Java.Lang.ICharSequence? src, Java.Text.Normalizer.Form? form);
[<Android.Runtime.Register("isNormalized", "(Ljava/lang/CharSequence;Ljava/text/Normalizer$Form;)Z", "")>]
static member IsNormalized : Java.Lang.ICharSequence * Java.Text.Normalizer.Form -> bool

Parameters

src
ICharSequence

The sequence of char values to be checked.

form
Normalizer.Form

The normalization form; one of java.text.Normalizer.Form#NFC, java.text.Normalizer.Form#NFD, java.text.Normalizer.Form#NFKC, java.text.Normalizer.Form#NFKD

Returns

true if the sequence of char values is normalized; false otherwise.

Attributes

Remarks

Java documentation for java.text.Normalizer.isNormalized(java.lang.CharSequence, java.text.Form).

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

IsNormalized(String, Normalizer+Form)

Determines if the given sequence of char values is normalized.

public static bool IsNormalized (string? src, Java.Text.Normalizer.Form? form);
static member IsNormalized : string * Java.Text.Normalizer.Form -> bool

Parameters

src
String

The sequence of char values to be checked.

form
Normalizer.Form

The normalization form; one of java.text.Normalizer.Form#NFC, java.text.Normalizer.Form#NFD, java.text.Normalizer.Form#NFKC, java.text.Normalizer.Form#NFKD

Returns

true if the sequence of char values is normalized; false otherwise.

Remarks

Java documentation for java.text.Normalizer.isNormalized(java.lang.CharSequence, java.text.Form).

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