Show / Hide Table of Contents

    Class Dictionary

    In-memory structure for the dictionary (.dic) and affix (.aff) data of a hunspell dictionary.

    Inheritance
    System.Object
    Dictionary
    Namespace: Lucene.Net.Analysis.Hunspell
    Assembly: Lucene.Net.Analysis.Common.dll
    Syntax
    public class Dictionary : object

    Constructors

    | Improve this Doc View Source

    Dictionary(Stream, IList<Stream>, Boolean)

    Creates a new Dictionary containing the information read from the provided s to hunspell affix and dictionary files. You have to dispose the provided s yourself.

    Declaration
    public Dictionary(Stream affix, IList<Stream> dictionaries, bool ignoreCase)
    Parameters
    Type Name Description
    Stream affix

    for reading the hunspell affix file (won't be disposed).

    IList<Stream> dictionaries

    for reading the hunspell dictionary files (won't be disposed).

    System.Boolean ignoreCase

    ignore case?

    | Improve this Doc View Source

    Dictionary(Stream, Stream)

    Creates a new Dictionary containing the information read from the provided s to hunspell affix and dictionary files. You have to dispose the provided s yourself.

    Declaration
    public Dictionary(Stream affix, Stream dictionary)
    Parameters
    Type Name Description
    Stream affix

    for reading the hunspell affix file (won't be disposed).

    Stream dictionary

    for reading the hunspell dictionary file (won't be disposed).

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