public interface TextTerms
Modifier and Type | Method and Description |
---|---|
int |
maxtf()
Returns the maximum term frequency over all terms in the document.
|
int |
size()
Returns the number of words.
|
int |
tf(java.lang.String term)
Returns the term frequency.
|
java.lang.Iterable<java.lang.String> |
unique()
Returns the iterator of unique words.
|
java.lang.Iterable<java.lang.String> |
words()
Returns the iterator of the words of the document.
|
int size()
java.lang.Iterable<java.lang.String> words()
java.lang.Iterable<java.lang.String> unique()
int tf(java.lang.String term)
int maxtf()