- java.lang.Object
-
- java.util.spi.LocaleServiceProvider
-
- java.text.spi.BreakIteratorProvider
-
public abstract class BreakIteratorProvider extends LocaleServiceProvider
An abstract class for service providers that provide concrete implementations of theBreakIterator
class.- Since:
- 1.6
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
BreakIteratorProvider()
Sole constructor.
-
Method Summary
Methods Modifier and Type Method and Description abstract BreakIterator
getCharacterInstance(Locale locale)
Returns a newBreakIterator
instance for character breaks for the given locale.abstract BreakIterator
getLineInstance(Locale locale)
Returns a newBreakIterator
instance for line breaks for the given locale.abstract BreakIterator
getSentenceInstance(Locale locale)
Returns a newBreakIterator
instance for sentence breaks for the given locale.abstract BreakIterator
getWordInstance(Locale locale)
Returns a newBreakIterator
instance for word breaks for the given locale.-
Methods inherited from class java.util.spi.LocaleServiceProvider
getAvailableLocales
-
-
-
-
Constructor Detail
-
BreakIteratorProvider
protected BreakIteratorProvider()
Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Detail
-
getWordInstance
public abstract BreakIterator getWordInstance(Locale locale)
Returns a newBreakIterator
instance for word breaks for the given locale.- Parameters:
locale
- the desired locale- Returns:
- A break iterator for word breaks
- Throws:
NullPointerException
- iflocale
is nullIllegalArgumentException
- iflocale
isn't one of the locales returned fromgetAvailableLocales()
.- See Also:
BreakIterator.getWordInstance(java.util.Locale)
-
getLineInstance
public abstract BreakIterator getLineInstance(Locale locale)
Returns a newBreakIterator
instance for line breaks for the given locale.- Parameters:
locale
- the desired locale- Returns:
- A break iterator for line breaks
- Throws:
NullPointerException
- iflocale
is nullIllegalArgumentException
- iflocale
isn't one of the locales returned fromgetAvailableLocales()
.- See Also:
BreakIterator.getLineInstance(java.util.Locale)
-
getCharacterInstance
public abstract BreakIterator getCharacterInstance(Locale locale)
Returns a newBreakIterator
instance for character breaks for the given locale.- Parameters:
locale
- the desired locale- Returns:
- A break iterator for character breaks
- Throws:
NullPointerException
- iflocale
is nullIllegalArgumentException
- iflocale
isn't one of the locales returned fromgetAvailableLocales()
.- See Also:
BreakIterator.getCharacterInstance(java.util.Locale)
-
getSentenceInstance
public abstract BreakIterator getSentenceInstance(Locale locale)
Returns a newBreakIterator
instance for sentence breaks for the given locale.- Parameters:
locale
- the desired locale- Returns:
- A break iterator for sentence breaks
- Throws:
NullPointerException
- iflocale
is nullIllegalArgumentException
- iflocale
isn't one of the locales returned fromgetAvailableLocales()
.- See Also:
BreakIterator.getSentenceInstance(java.util.Locale)
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/text/spi/breakiteratorprovider.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.