|
What this is
Other links
The source codepackage org.apache.lucene.analysis.de; /** * Copyright 2004 The Apache Software Foundation * * Licensed 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. */ import org.apache.lucene.analysis.Token; import org.apache.lucene.analysis.TokenFilter; import org.apache.lucene.analysis.TokenStream; import java.io.IOException; import java.util.Hashtable; import java.util.Set; import java.util.HashSet; /** * A filter that stems German words. It supports a table of words that should * not be stemmed at all. The stemmer used can be changed at runtime after the * filter object is created (as long as it is a GermanStemmer). * * @author Gerhard Schwarz * @version $Id: GermanStemFilter.java,v 1.8 2004/03/30 15:54:48 otis Exp $ */ public final class GermanStemFilter extends TokenFilter { /** * The actual token in the input stream. */ private Token token = null; private GermanStemmer stemmer = null; private Set exclusionSet = null; public GermanStemFilter( TokenStream in ) { super(in); stemmer = new GermanStemmer(); } /** * Builds a GermanStemFilter that uses an exclusiontable. * @deprecated Use {@link #GermanStemFilter(org.apache.lucene.analysis.TokenStream, java.util.Set)} instead. */ public GermanStemFilter( TokenStream in, Hashtable exclusiontable ) { this( in ); exclusionSet = new HashSet(exclusiontable.keySet()); } /** * Builds a GermanStemFilter that uses an exclusiontable. */ public GermanStemFilter( TokenStream in, Set exclusionSet ) { this( in ); this.exclusionSet = exclusionSet; } /** * @return Returns the next token in the stream, or null at EOS */ public final Token next() throws IOException { if ( ( token = input.next() ) == null ) { return null; } // Check the exclusiontable else if ( exclusionSet != null && exclusionSet.contains( token.termText() ) ) { return token; } else { String s = stemmer.stem( token.termText() ); // If not stemmed, dont waste the time creating a new token if ( !s.equals( token.termText() ) ) { return new Token( s, token.startOffset(), token.endOffset(), token.type() ); } return token; } } /** * Set a alternative/custom GermanStemmer for this filter. */ public void setStemmer( GermanStemmer stemmer ) { if ( stemmer != null ) { this.stemmer = stemmer; } } /** * Set an alternative exclusion list for this filter. * @deprecated Use {@link #setExclusionSet(java.util.Set)} instead. */ public void setExclusionTable( Hashtable exclusiontable ) { exclusionSet = new HashSet(exclusiontable.keySet()); } /** * Set an alternative exclusion list for this filter. */ public void setExclusionSet( Set exclusionSet ) { this.exclusionSet = exclusionSet; } } |
... this post is sponsored by my books ... | |
![]() #1 New Release! |
![]() FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.