< Summary

Class:Microsoft.Azure.Search.Models.SnowballTokenFilter
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\SnowballTokenFilter.cs
Covered lines:8
Uncovered lines:0
Coverable lines:8
Total lines:79
Line coverage:100% (8 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_Language()-100%100%
Validate()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\SnowballTokenFilter.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.Search.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// A filter that stems words using a Snowball-generated stemmer. This
 18    /// token filter is implemented using Apache Lucene.
 19    /// <see
 20    /// href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/snowball/SnowballFilter.h
 21    /// />
 22    /// </summary>
 23    [Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.SnowballTokenFilter")]
 24    public partial class SnowballTokenFilter : TokenFilter
 25    {
 26        /// <summary>
 27        /// Initializes a new instance of the SnowballTokenFilter class.
 28        /// </summary>
 4629        public SnowballTokenFilter()
 30        {
 31            CustomInit();
 4632        }
 33
 34        /// <summary>
 35        /// Initializes a new instance of the SnowballTokenFilter class.
 36        /// </summary>
 37        /// <param name="name">The name of the token filter. It must only
 38        /// contain letters, digits, spaces, dashes or underscores, can only
 39        /// start and end with alphanumeric characters, and is limited to 128
 40        /// characters.</param>
 41        /// <param name="language">The language to use. Possible values
 42        /// include: 'armenian', 'basque', 'catalan', 'danish', 'dutch',
 43        /// 'english', 'finnish', 'french', 'german', 'german2', 'hungarian',
 44        /// 'italian', 'kp', 'lovins', 'norwegian', 'porter', 'portuguese',
 45        /// 'romanian', 'russian', 'spanish', 'swedish', 'turkish'</param>
 46        public SnowballTokenFilter(string name, SnowballTokenFilterLanguage language)
 4647            : base(name)
 48        {
 4649            Language = language;
 50            CustomInit();
 4651        }
 52
 53        /// <summary>
 54        /// An initialization method that performs custom operations like setting defaults
 55        /// </summary>
 56        partial void CustomInit();
 57
 58        /// <summary>
 59        /// Gets or sets the language to use. Possible values include:
 60        /// 'armenian', 'basque', 'catalan', 'danish', 'dutch', 'english',
 61        /// 'finnish', 'french', 'german', 'german2', 'hungarian', 'italian',
 62        /// 'kp', 'lovins', 'norwegian', 'porter', 'portuguese', 'romanian',
 63        /// 'russian', 'spanish', 'swedish', 'turkish'
 64        /// </summary>
 65        [JsonProperty(PropertyName = "language")]
 23066        public SnowballTokenFilterLanguage Language { get; set; }
 67
 68        /// <summary>
 69        /// Validate the object.
 70        /// </summary>
 71        /// <exception cref="Rest.ValidationException">
 72        /// Thrown if validation fails
 73        /// </exception>
 74        public override void Validate()
 75        {
 4676            base.Validate();
 4677        }
 78    }
 79}