< Summary

Class:Microsoft.Azure.Search.Models.EdgeNGramTokenFilter
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Customizations\Indexes\Models\EdgeNGramTokenFilter.cs
Covered lines:0
Uncovered lines:11
Coverable lines:11
Total lines:77
Line coverage:0% (0 of 11)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_MinGram()-0%100%
get_MaxGram()-0%100%
get_Side()-0%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Customizations\Indexes\Models\EdgeNGramTokenFilter.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for
 3// license information.
 4//
 5// Code generated by Microsoft (R) AutoRest Code Generator.
 6// Changes may cause incorrect behavior and will be lost if the code is
 7// regenerated.
 8
 9namespace Microsoft.Azure.Search.Models
 10{
 11    using System;
 12    using System.Linq;
 13    using System.Collections.Generic;
 14    using Newtonsoft.Json;
 15    using Microsoft.Rest;
 16    using Microsoft.Rest.Serialization;
 17    using Microsoft.Rest.Azure;
 18
 19    /// <summary>
 20    /// Generates n-grams of the given size(s) starting from the front or the
 21    /// back of an input token. This token filter is implemented using Apache
 22    /// Lucene.
 23    /// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramToken
 24    /// </summary>
 25    [JsonObject("#Microsoft.Azure.Search.EdgeNGramTokenFilter")]
 26    [Obsolete("This type is obsolete. Please use EdgeNGramTokenFilterV2 instead.")]
 27    public partial class EdgeNGramTokenFilter : TokenFilter
 28    {
 29        /// <summary>
 30        /// Initializes a new instance of the EdgeNGramTokenFilter class.
 31        /// </summary>
 032        public EdgeNGramTokenFilter() { }
 33
 34        /// <summary>
 35        /// Initializes a new instance of the EdgeNGramTokenFilter class.
 36        /// </summary>
 37        public EdgeNGramTokenFilter(string name, int? minGram = default(int?), int? maxGram = default(int?), EdgeNGramTo
 038            : base(name)
 39        {
 040            MinGram = minGram;
 041            MaxGram = maxGram;
 042            Side = side;
 043        }
 44
 45        /// <summary>
 46        /// Gets or sets the minimum n-gram length. Default is 1. Must be less
 47        /// than the value of maxGram.
 48        /// </summary>
 49        [JsonProperty(PropertyName = "minGram")]
 050        public int? MinGram { get; set; }
 51
 52        /// <summary>
 53        /// Gets or sets the maximum n-gram length. Default is 2.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "maxGram")]
 056        public int? MaxGram { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets specifies which side of the input the n-gram should
 60        /// be generated from. Default is "front". Possible values include:
 61        /// 'front', 'back'
 62        /// </summary>
 63        [JsonProperty(PropertyName = "side")]
 064        public EdgeNGramTokenFilterSide? Side { get; set; }
 65
 66        /// <summary>
 67        /// Validate the object.
 68        /// </summary>
 69        /// <exception cref="ValidationException">
 70        /// Thrown if validation fails
 71        /// </exception>
 72        public override void Validate()
 73        {
 074            base.Validate();
 075        }
 76    }
 77}