public static boolean isNormalized (CharSequence src, Form form)

Determines if the given sequence of char values is normalized.

Parameters:
src    The sequence of char values to be checked.
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.

Exceptions:
NullPointerException    If src or form is null.