< Summary

Class:Microsoft.Azure.Search.Models.MappingCharFilter
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\MappingCharFilter.cs
Covered lines:9
Uncovered lines:1
Coverable lines:10
Total lines:84
Line coverage:90% (9 of 10)
Covered branches:1
Total branches:2
Branch coverage:50% (1 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_Mappings()-100%100%
Validate()-75%50%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\MappingCharFilter.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 Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// A character filter that applies mappings defined with the mappings
 21    /// option. Matching is greedy (longest pattern matching at a given point
 22    /// wins). Replacement is allowed to be the empty string. This character
 23    /// filter is implemented using Apache Lucene.
 24    /// <see
 25    /// href="https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/charfilter/MappingCharFi
 26    /// />
 27    /// </summary>
 28    [Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.MappingCharFilter")]
 29    public partial class MappingCharFilter : CharFilter
 30    {
 31        /// <summary>
 32        /// Initializes a new instance of the MappingCharFilter class.
 33        /// </summary>
 434        public MappingCharFilter()
 35        {
 36            CustomInit();
 437        }
 38
 39        /// <summary>
 40        /// Initializes a new instance of the MappingCharFilter class.
 41        /// </summary>
 42        /// <param name="name">The name of the char filter. It must only
 43        /// contain letters, digits, spaces, dashes or underscores, can only
 44        /// start and end with alphanumeric characters, and is limited to 128
 45        /// characters.</param>
 46        /// <param name="mappings">A list of mappings of the following format:
 47        /// "a=&gt;b" (all occurrences of the character "a" will be replaced
 48        /// with character "b").</param>
 49        public MappingCharFilter(string name, IList<string> mappings)
 450            : base(name)
 51        {
 452            Mappings = mappings;
 53            CustomInit();
 454        }
 55
 56        /// <summary>
 57        /// An initialization method that performs custom operations like setting defaults
 58        /// </summary>
 59        partial void CustomInit();
 60
 61        /// <summary>
 62        /// Gets or sets a list of mappings of the following format:
 63        /// "a=&amp;gt;b" (all occurrences of the character "a" will be
 64        /// replaced with character "b").
 65        /// </summary>
 66        [JsonProperty(PropertyName = "mappings")]
 2467        public IList<string> Mappings { get; set; }
 68
 69        /// <summary>
 70        /// Validate the object.
 71        /// </summary>
 72        /// <exception cref="ValidationException">
 73        /// Thrown if validation fails
 74        /// </exception>
 75        public override void Validate()
 76        {
 477            base.Validate();
 478            if (Mappings == null)
 79            {
 080                throw new ValidationException(ValidationRules.CannotBeNull, "Mappings");
 81            }
 482        }
 83    }
 84}