Constructor and Description |
---|
PolishStemmer() |
Modifier and Type | Method and Description |
---|---|
Dictionary |
getDictionary() |
Iterator<WordData> |
iterator()
Iterates over all dictionary forms stored in this stemmer.
|
List<WordData> |
lookup(CharSequence word)
Returns a list of
WordData entries for a given word. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public Dictionary getDictionary()
Dictionary
driving the stemmer.public List<WordData> lookup(CharSequence word)
WordData
entries for a given word. The returned
list is never null
. Depending on the stemmer's
implementation the WordData
may carry the stem and additional
information (tag) or just the stem.
The returned list and any object it contains are not usable after a subsequent call to this method. Any data that should be stored in between must be copied by the caller.
Copyright © 2016. All rights reserved.