Uses of Class
com.ibm.icu.text.BreakIterator

Packages that use BreakIterator
com.ibm.icu.lang Enhanced character property and surrogate support. 
com.ibm.icu.text Extensions and enhancements to java.text to support unicode transforms, UnicodeSet, surrogate char utilities, UCA collation, normalization, break iteration (rule and dictionary based), enhanced number format, international string searching, and arabic shaping. 
 

Uses of BreakIterator in com.ibm.icu.lang
 

Methods in com.ibm.icu.lang with parameters of type BreakIterator
static java.lang.String UCharacter.toTitleCase(java.lang.String str, BreakIterator breakiter)
          Gets the titlecase version of the argument string.
static java.lang.String UCharacter.toTitleCase(java.util.Locale locale, java.lang.String str, BreakIterator breakiter)
          Gets the titlecase version of the argument string.
static java.lang.String UCharacter.toTitleCase(ULocale locale, java.lang.String str, BreakIterator titleIter)
          Gets the titlecase version of the argument string.
 

Uses of BreakIterator in com.ibm.icu.text
 

Subclasses of BreakIterator in com.ibm.icu.text
 class DictionaryBasedBreakIterator
          A subclass of RuleBasedBreakIterator_Old that adds the ability to use a dictionary to further subdivide ranges of text beyond what is possible using just the state-table-based algorithm.
 class RuleBasedBreakIterator
          A subclass of BreakIterator whose behavior is specified using a list of rules.
 class RuleBasedBreakIterator_New
          Rule Based Break Iterator implementation.
 class RuleBasedBreakIterator_Old
          A subclass of BreakIterator whose behavior is specified using a list of rules.
 

Fields in com.ibm.icu.text declared as BreakIterator
protected  BreakIterator SearchIterator.breakIterator
          The BreakIterator to define the boundaries of a logical match.
 

Methods in com.ibm.icu.text that return BreakIterator
static BreakIterator BreakIterator.getWordInstance()
          Returns a new instance of BreakIterator that locates word boundaries.
static BreakIterator BreakIterator.getWordInstance(java.util.Locale where)
          Returns a new instance of BreakIterator that locates word boundaries.
static BreakIterator BreakIterator.getWordInstance(ULocale where)
          Returns a new instance of BreakIterator that locates word boundaries.
static BreakIterator BreakIterator.getLineInstance()
          Returns a new instance of BreakIterator that locates legal line- wrapping positions.
static BreakIterator BreakIterator.getLineInstance(java.util.Locale where)
          Returns a new instance of BreakIterator that locates legal line- wrapping positions.
static BreakIterator BreakIterator.getLineInstance(ULocale where)
          Returns a new instance of BreakIterator that locates legal line- wrapping positions.
static BreakIterator BreakIterator.getCharacterInstance()
          Returns a new instance of BreakIterator that locates logical-character boundaries.
static BreakIterator BreakIterator.getCharacterInstance(java.util.Locale where)
          Returns a new instance of BreakIterator that locates logical-character boundaries.
static BreakIterator BreakIterator.getCharacterInstance(ULocale where)
          Returns a new instance of BreakIterator that locates logical-character boundaries.
static BreakIterator BreakIterator.getSentenceInstance()
          Returns a new instance of BreakIterator that locates sentence boundaries.
static BreakIterator BreakIterator.getSentenceInstance(java.util.Locale where)
          Returns a new instance of BreakIterator that locates sentence boundaries.
static BreakIterator BreakIterator.getSentenceInstance(ULocale where)
          Returns a new instance of BreakIterator that locates sentence boundaries.
static BreakIterator BreakIterator.getTitleInstance()
          Returns a new instance of BreakIterator that locates title boundaries.
static BreakIterator BreakIterator.getTitleInstance(java.util.Locale where)
          Returns a new instance of BreakIterator that locates title boundaries.
static BreakIterator BreakIterator.getTitleInstance(ULocale where)
          Returns a new instance of BreakIterator that locates title boundaries.
 BreakIterator SearchIterator.getBreakIterator()
          Returns the BreakIterator that is used to restrict the indexes at which matches are detected.
 

Methods in com.ibm.icu.text with parameters of type BreakIterator
static java.lang.Object BreakIterator.registerInstance(BreakIterator iter, java.util.Locale locale, int kind)
          Register a new break iterator of the indicated kind, to use in the given locale.
static java.lang.Object BreakIterator.registerInstance(BreakIterator iter, ULocale locale, int kind)
          Register a new break iterator of the indicated kind, to use in the given locale.
 void SearchIterator.setBreakIterator(BreakIterator breakiter)
          Set the BreakIterator that is used to restrict the points at which matches are detected.
 

Constructors in com.ibm.icu.text with parameters of type BreakIterator
SearchIterator(java.text.CharacterIterator target, BreakIterator breaker)
          Protected constructor for use by subclasses.
StringSearch(java.lang.String pattern, java.text.CharacterIterator target, RuleBasedCollator collator, BreakIterator breakiter)
          Initializes the iterator to use the language-specific rules defined in the argument collator to search for argument pattern in the argument target text.
 



Copyright (c) 2006 IBM Corporation and others.