Save This Page
Home » lucene-2.3.2-src » org.apache » lucene » analysis » [javadoc | source]
org.apache.lucene.analysis
public class: ISOLatin1AccentFilter [javadoc | source]
java.lang.Object
   org.apache.lucene.analysis.TokenStream
      org.apache.lucene.analysis.TokenFilter
         org.apache.lucene.analysis.ISOLatin1AccentFilter
A filter that replaces accented characters in the ISO Latin 1 character set (ISO-8859-1) by their unaccented equivalent. The case will not be altered.

For instance, 'à' will be replaced by 'a'.

Fields inherited from org.apache.lucene.analysis.TokenFilter:
input
Constructor:
 public ISOLatin1AccentFilter(TokenStream input) 
Method from org.apache.lucene.analysis.ISOLatin1AccentFilter Summary:
next,   removeAccents
Methods from org.apache.lucene.analysis.TokenFilter:
close
Methods from org.apache.lucene.analysis.TokenStream:
close,   next,   next,   reset
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.lucene.analysis.ISOLatin1AccentFilter Detail:
 public final Token next(Token result) throws IOException 
 public final  void removeAccents(char[] input,
    int length) 
    To replace accented characters in a String by unaccented equivalents.