Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class OpenNLPTokenizerFactory

    Factory for OpenNLPTokenizer.

    <fieldType name="text_opennlp" class="solr.TextField" positionIncrementGap="100"
      <analyzer>
        <tokenizer class="solr.OpenNLPTokenizerFactory" sentenceModel="filename" tokenizerModel="filename"/>
      </analyzer>
    </fieldType>
    Inheritance
    System.Object
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory
    Lucene.Net.Analysis.Util.TokenizerFactory
    OpenNLPTokenizerFactory
    Implements
    Lucene.Net.Analysis.Util.IResourceLoaderAware
    Inherited Members
    Lucene.Net.Analysis.Util.TokenizerFactory.ForName(System.String, System.Collections.Generic.IDictionary<System.String, System.String>)
    Lucene.Net.Analysis.Util.TokenizerFactory.LookupClass(System.String)
    Lucene.Net.Analysis.Util.TokenizerFactory.AvailableTokenizers
    Lucene.Net.Analysis.Util.TokenizerFactory.ReloadTokenizers()
    Lucene.Net.Analysis.Util.TokenizerFactory.Create(System.IO.TextReader)
    Lucene.Net.Analysis.Util.TokenizerFactory.Create(Lucene.Net.Util.AttributeSource.AttributeFactory, System.IO.TextReader)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.LUCENE_MATCH_VERSION_PARAM
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.m_luceneMatchVersion
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.OriginalArgs
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.AssureMatchVersion()
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.LuceneMatchVersion
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.Require(System.Collections.Generic.IDictionary<System.String, System.String>, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.Require(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Collections.Generic.ICollection<System.String>)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.Require(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Collections.Generic.ICollection<System.String>, System.Boolean)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.Get(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.Get(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Collections.Generic.ICollection<System.String>)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.Get(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Collections.Generic.ICollection<System.String>, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.Get(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Collections.Generic.ICollection<System.String>, System.String, System.Boolean)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.RequireInt32(System.Collections.Generic.IDictionary<System.String, System.String>, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetInt32(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Int32)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.RequireBoolean(System.Collections.Generic.IDictionary<System.String, System.String>, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetBoolean(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Boolean)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.RequireSingle(System.Collections.Generic.IDictionary<System.String, System.String>, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetSingle(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Single)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.RequireChar(System.Collections.Generic.IDictionary<System.String, System.String>, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetChar(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Char)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetSet(System.Collections.Generic.IDictionary<System.String, System.String>, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetPattern(System.Collections.Generic.IDictionary<System.String, System.String>, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetCulture(System.Collections.Generic.IDictionary<System.String, System.String>, System.String, System.Globalization.CultureInfo)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetWordSet(Lucene.Net.Analysis.Util.IResourceLoader, System.String, System.Boolean)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetLines(Lucene.Net.Analysis.Util.IResourceLoader, System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetSnowballWordSet(Lucene.Net.Analysis.Util.IResourceLoader, System.String, System.Boolean)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.SplitFileNames(System.String)
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.GetClassArg()
    Lucene.Net.Analysis.Util.AbstractAnalysisFactory.IsExplicitLuceneMatchVersion
    Namespace: Lucene.Net.Analysis.OpenNlp
    Assembly: Lucene.Net.Analysis.OpenNLP.dll
    Syntax
    public class OpenNLPTokenizerFactory : TokenizerFactory, IResourceLoaderAware

    Constructors

    | Improve this Doc View Source

    OpenNLPTokenizerFactory(IDictionary<String, String>)

    Declaration
    public OpenNLPTokenizerFactory(IDictionary<string, string> args)
    Parameters
    Type Name Description
    IDictionary<System.String, System.String> args

    Fields

    | Improve this Doc View Source

    SENTENCE_MODEL

    Declaration
    public const string SENTENCE_MODEL = null
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    TOKENIZER_MODEL

    Declaration
    public const string TOKENIZER_MODEL = null
    Field Value
    Type Description
    System.String

    Methods

    | Improve this Doc View Source

    Create(AttributeSource.AttributeFactory, TextReader)

    Declaration
    public override Tokenizer Create(AttributeSource.AttributeFactory factory, TextReader reader)
    Parameters
    Type Name Description
    Lucene.Net.Util.AttributeSource.AttributeFactory factory
    TextReader reader
    Returns
    Type Description
    Lucene.Net.Analysis.Tokenizer
    | Improve this Doc View Source

    Inform(IResourceLoader)

    Declaration
    public virtual void Inform(IResourceLoader loader)
    Parameters
    Type Name Description
    Lucene.Net.Analysis.Util.IResourceLoader loader

    Implements

    Lucene.Net.Analysis.Util.IResourceLoaderAware
    • Improve this Doc
    • View Source
    Back to top Copyright © 2022 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.