Package opennlp.tools.dictionary
Class Index
- java.lang.Object
-
- opennlp.tools.dictionary.Index
-
public class Index extends Object
This classes indexesstring lists. This makes it possible to check if a certain token is contained in at least one of theStringLists.
-
-
Constructor Summary
Constructors Constructor Description Index(Iterator<StringList> tokenLists)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontains(String token)Checks if at least oneStringListcontains the specifiedtoken.
-
-
-
Constructor Detail
-
Index
public Index(Iterator<StringList> tokenLists)
- Parameters:
tokenLists- The iterableStringListelements.
-
-
Method Detail
-
contains
public boolean contains(String token)
Checks if at least oneStringListcontains the specifiedtoken.- Parameters:
token- The element to check for.- Returns:
trueif the token is contained,falseotherwise.
-
-