Show / Hide Table of Contents

    Class CodepointCountFilter

    Removes words that are too long or too short from the stream.

    Note: Length is calculated as the number of Unicode codepoints.

    Inheritance
    System.Object
    AttributeSource
    TokenStream
    TokenFilter
    FilteringTokenFilter
    CodepointCountFilter
    Implements
    IDisposable
    Inherited Members
    FilteringTokenFilter.m_version
    FilteringTokenFilter.IncrementToken()
    FilteringTokenFilter.Reset()
    FilteringTokenFilter.EnablePositionIncrements
    FilteringTokenFilter.SetEnablePositionIncrements(Boolean)
    FilteringTokenFilter.End()
    TokenFilter.m_input
    TokenFilter.Dispose(Boolean)
    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.Miscellaneous
    Assembly: Lucene.Net.Analysis.Common.dll
    Syntax
    public sealed class CodepointCountFilter : FilteringTokenFilter, IDisposable

    Constructors

    | Improve this Doc View Source

    CodepointCountFilter(LuceneVersion, TokenStream, Int32, Int32)

    Create a new CodepointCountFilter. This will filter out tokens whose CharTermAttribute is either too short ( < min) or too long ( > max).

    Declaration
    public CodepointCountFilter(LuceneVersion version, TokenStream in, int min, int max)
    Parameters
    Type Name Description
    LuceneVersion version

    the Lucene match version

    TokenStream in

    the TokenStream to consume

    System.Int32 min

    the minimum length

    System.Int32 max

    the maximum length

    Methods

    | Improve this Doc View Source

    Accept()

    Declaration
    protected override bool Accept()
    Returns
    Type Description
    System.Boolean
    Overrides
    FilteringTokenFilter.Accept()

    Implements

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