/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.lucene.analysis.miscellaneous;


import org.apache.lucene.analysis.TokenFilter;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.tokenattributes.KeywordAttribute;
import org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute;

import java.io.IOException;


This TokenFilter emits each incoming token twice once as keyword and once non-keyword, in other words once with KeywordAttribute.setKeyword(boolean) set to true and once set to false. This is useful if used with a stem filter that respects the KeywordAttribute to index the stemmed and the un-stemmed version of a term into the same field.
/** * This TokenFilter emits each incoming token twice once as keyword and once non-keyword, in other words once with * {@link KeywordAttribute#setKeyword(boolean)} set to <code>true</code> and once set to <code>false</code>. * This is useful if used with a stem filter that respects the {@link KeywordAttribute} to index the stemmed and the * un-stemmed version of a term into the same field. */
public final class KeywordRepeatFilter extends TokenFilter { private final KeywordAttribute keywordAttribute = addAttribute(KeywordAttribute.class); private final PositionIncrementAttribute posIncAttr = addAttribute(PositionIncrementAttribute.class); private State state;
Construct a token stream filtering the given input.
/** * Construct a token stream filtering the given input. */
public KeywordRepeatFilter(TokenStream input) { super(input); } @Override public boolean incrementToken() throws IOException { if (state != null) { restoreState(state); posIncAttr.setPositionIncrement(0); keywordAttribute.setKeyword(false); state = null; return true; } if (input.incrementToken()) { state = captureState(); keywordAttribute.setKeyword(true); return true; } return false; } @Override public void reset() throws IOException { super.reset(); state = null; } }