Show / Hide Table of Contents

    Class FrenchStemFilter

    A TokenFilter that stems french words.

    The used stemmer can be changed at runtime after the filter object is created (as long as it is a FrenchStemmer).

    To prevent terms from being stemmed use an instance of KeywordMarkerFilter or a custom TokenFilter that sets the KeywordAttribute before this TokenStream.

    Inheritance
    System.Object
    AttributeSource
    TokenStream
    TokenFilter
    FrenchStemFilter
    Implements
    IDisposable
    Inherited Members
    TokenFilter.m_input
    TokenFilter.End()
    TokenFilter.Dispose(Boolean)
    TokenFilter.Reset()
    TokenStream.Dispose()
    AttributeSource.GetAttributeFactory()
    AttributeSource.GetAttributeClassesEnumerator()
    AttributeSource.GetAttributeImplsEnumerator()
    AttributeSource.AddAttributeImpl(Attribute)
    AttributeSource.AddAttribute<T>()
    AttributeSource.HasAttributes
    AttributeSource.HasAttribute<T>()
    AttributeSource.GetAttribute<T>()
    AttributeSource.ClearAttributes()
    AttributeSource.CaptureState()
    AttributeSource.RestoreState(AttributeSource.State)
    AttributeSource.GetHashCode()
    AttributeSource.Equals(Object)
    AttributeSource.ReflectAsString(Boolean)
    AttributeSource.ReflectWith(IAttributeReflector)
    AttributeSource.CloneAttributes()
    AttributeSource.CopyTo(AttributeSource)
    AttributeSource.ToString()
    Namespace: Lucene.Net.Analysis.Fr
    Assembly: Lucene.Net.Analysis.Common.dll
    Syntax
    public sealed class FrenchStemFilter : TokenFilter, IDisposable

    Constructors

    | Improve this Doc View Source

    FrenchStemFilter(TokenStream)

    Declaration
    public FrenchStemFilter(TokenStream in)
    Parameters
    Type Name Description
    TokenStream in

    Properties

    | Improve this Doc View Source

    Stemmer

    Set a alternative/custom FrenchStemmer for this filter.

    Declaration
    public FrenchStemmer Stemmer { get; set; }
    Property Value
    Type Description
    FrenchStemmer

    Methods

    | Improve this Doc View Source

    IncrementToken()

    Declaration
    public override bool IncrementToken()
    Returns
    Type Description
    System.Boolean

    Returns true for the next token in the stream, or false at EOS

    Overrides
    TokenStream.IncrementToken()

    Implements

    IDisposable

    See Also

    KeywordMarkerFilter
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)