Uses of Class com.ibm.icu.text.Normalizer.Mode

Uses in package com.ibm.icu.text

Constructors with parameter type com.ibm.icu.text.Normalizer.Mode

Normalizer.Normalizer(CharacterIterator iter, Normalizer.Mode mode, int opt)
Creates a new Normalizer object for iterating over the normalized form of the given text.
Normalizer.Normalizer(String str, Normalizer.Mode mode, int opt)
Creates a new Normalizer object for iterating over the normalized form of a given string.
Creates a new Normalizer object for iterating over the normalized form of the given text.

Fields of type com.ibm.icu.text.Normalizer.Mode

Normalizer.Mode
Canonical decomposition followed by canonical composition.
Normalizer.Mode
Compatibility decomposition followed by canonical composition.
Normalizer.Mode
Canonical decomposition.
Normalizer.Mode
Compatibility decomposition.
Normalizer.Mode
Default normalization.
Normalizer.Mode
"Fast C or D" form.
Normalizer.Mode
Canonical decomposition followed by canonical composition.
Normalizer.Mode
Canonical decomposition.
Normalizer.Mode
Compatibility decomposition followed by canonical composition.
Normalizer.Mode
Compatibility decomposition.
Normalizer.Mode
No decomposition/composition.
Normalizer.Mode
Null operation for use with the constructors and the static normalize method.

Methods with parameter type com.ibm.icu.text.Normalizer.Mode

String
Normalizer.concatenate(String left, String right, Normalizer.Mode mode, int options)
Concatenate normalized strings, making sure that the result is normalized as well.
String
Normalizer.concatenate(char[] left, char[] right, Normalizer.Mode mode, int options)
Concatenate normalized strings, making sure that the result is normalized as well.
int
Normalizer.concatenate(char[] left, int leftStart, int leftLimit, char[] right, int rightStart, int rightLimit, char[] dest, int destStart, int destLimit, Normalizer.Mode mode, int options)
Concatenate normalized strings, making sure that the result is normalized as well.
boolean
Internal API
boolean
Normalizer.isNormalized(String str, Normalizer.Mode mode, int options)
Convenience Method
boolean
Normalizer.isNormalized(char[] src, int start, int limit, Normalizer.Mode mode, int options)
Test if a string is in a given normalization form.
boolean
Normalizer.isNormalized(int char32, Normalizer.Mode mode, int options)
Convenience Method
String
Normalize a string.
String
Normalizer.normalize(String str, Normalizer.Mode mode, int options)
Normalizes a String using the given normalization operation.
int
Normalizer.normalize(char[] source, char[] target, Normalizer.Mode mode, int options)
Normalize a string.
int
Normalizer.normalize(char[] src, int srcStart, int srcLimit, char[] dest, int destStart, int destLimit, Normalizer.Mode mode, int options)
Normalize a string.
String
Conveinience method to normalize a codepoint accoding to the given mode
String
Normalizer.normalize(int char32, Normalizer.Mode mode, int options)
Normalize a codepoint accoding to the given mode
Normalizer.QuickCheckResult
Normalizer.quickCheck(String source, Normalizer.Mode mode)
Convenience method.
Normalizer.QuickCheckResult
Normalizer.quickCheck(String source, Normalizer.Mode mode, int options)
Convenience method.
Normalizer.QuickCheckResult
Normalizer.quickCheck(char[] source, Normalizer.Mode mode, int options)
Convenience method.
Normalizer.QuickCheckResult
Normalizer.quickCheck(char[] source, int start, int limit, Normalizer.Mode mode, int options)
Performing quick check on a string, to quickly determine if the string is in a particular normalization format.
void
Set the normalization mode for this object.

Methods with return type com.ibm.icu.text.Normalizer.Mode

Normalizer.Mode
Return the basic operation performed by this Normalizer

Copyright (c) 2006 IBM Corporation and others.