Java Code Examples for org.apache.lucene.analysis.tokenattributes.PackedTokenAttributeImpl#append()
The following examples show how to use
org.apache.lucene.analysis.tokenattributes.PackedTokenAttributeImpl#append() .
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: SymbolnameTokenFilter.java From elasticsearch-plugin-bundle with GNU Affero General Public License v3.0 | 5 votes |
protected void process() throws CharacterCodingException { String term = new String(termAtt.buffer(), 0, termAtt.length()); for (CharSequence charSequence : process(term)) { if (charSequence != null) { PackedTokenAttributeImpl token = new PackedTokenAttributeImpl(); token.append(charSequence); tokens.add(token); } } }
Example 2
Source File: StandardnumberTokenFilter.java From elasticsearch-plugin-bundle with GNU Affero General Public License v3.0 | 5 votes |
private void detect() throws CharacterCodingException { CharSequence term = new String(termAtt.buffer(), 0, termAtt.length()); Collection<CharSequence> variants = service.lookup(settings, term); for (CharSequence ch : variants) { if (ch != null) { PackedTokenAttributeImpl token = new PackedTokenAttributeImpl(); token.append(ch); tokens.add(token); } } }
Example 3
Source File: BaseformTokenFilter.java From elasticsearch-analysis-baseform with Apache License 2.0 | 5 votes |
protected void baseform() throws CharacterCodingException { CharSequence term = new String(termAtt.buffer(), 0, termAtt.length()); CharSequence s = dictionary.lookup(term); if (s != null && s.length() > 0) { PackedTokenAttributeImpl impl = new PackedTokenAttributeImpl(); impl.append(s); tokens.add(impl); } }