org.apache.lucene.analysis.commongrams.CommonGramsQueryFilter Java Examples
The following examples show how to use
org.apache.lucene.analysis.commongrams.CommonGramsQueryFilter.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CommonGramsTokenFilterFactory.java From Elasticsearch with Apache License 2.0 | 5 votes |
@Override public TokenStream create(TokenStream tokenStream) { CommonGramsFilter filter = new CommonGramsFilter(tokenStream, words); if (queryMode) { return new CommonGramsQueryFilter(filter); } else { return filter; } }
Example #2
Source File: CommonGramsTokenFilterFactory.java From crate with Apache License 2.0 | 5 votes |
@Override public TokenStream create(TokenStream tokenStream) { CommonGramsFilter filter = new CommonGramsFilter(tokenStream, words); if (queryMode) { return new CommonGramsQueryFilter(filter); } else { return filter; } }