Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class CombineSuggestion

    A suggestion generated by combining one or more original query terms

    Inheritance
    object
    CombineSuggestion
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Lucene.Net.Search.Spell
    Assembly: Lucene.Net.Suggest.dll
    Syntax
    public class CombineSuggestion

    Constructors

    CombineSuggestion(SuggestWord, int[])

    Creates a new CombineSuggestion from a

    suggestion
    and an array of term ids (referencing the indexes to the original terms that form this combined suggestion)
    Declaration
    public CombineSuggestion(SuggestWord suggestion, int[] originalTermIndexes)
    Parameters
    Type Name Description
    SuggestWord suggestion
    int[] originalTermIndexes

    Properties

    OriginalTermIndexes

    The indexes from the passed-in array of terms used to make this word combination

    Declaration
    public int[] OriginalTermIndexes { get; }
    Property Value
    Type Description
    int[]

    Suggestion

    The word combination suggestion

    Declaration
    public SuggestWord Suggestion { get; }
    Property Value
    Type Description
    SuggestWord
    Back to top Copyright © 2024 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.