Searched defs:keyword (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/
H A DKeywordAttributeImpl.java24 *This attribute can be used to mark a token as a keyword. Keyword aware
32 private boolean keyword; field in class:KeywordAttributeImpl
36 keyword = false;
42 attr.setKeyword(keyword);
47 return keyword ? 31 : 37;
57 return keyword == other.keyword;
61 * Returns <code>true</code> iff the current token is a keyword, otherwise
64 * @return <code>true</code> iff the current token is a keyword, otherwise
68 return keyword;
[all...]

Completed in 10 milliseconds