< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\CjkBigramTokenFilter.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.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Forms bigrams of CJK terms that are generated from StandardTokenizer.
 20    /// This token filter is implemented using Apache Lucene.
 21    /// <see
 22    /// href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/cjk/CJKBigramFilter.html"
 23    /// />
 24    /// </summary>
 25    [Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.CjkBigramTokenFilter")]
 26    public partial class CjkBigramTokenFilter : TokenFilter
 27    {
 28        /// <summary>
 29        /// Initializes a new instance of the CjkBigramTokenFilter class.
 30        /// </summary>
 831        public CjkBigramTokenFilter()
 32        {
 33            CustomInit();
 834        }
 35
 36        /// <summary>
 37        /// Initializes a new instance of the CjkBigramTokenFilter class.
 38        /// </summary>
 39        /// <param name="name">The name of the token filter. It must only
 40        /// contain letters, digits, spaces, dashes or underscores, can only
 41        /// start and end with alphanumeric characters, and is limited to 128
 42        /// characters.</param>
 43        /// <param name="ignoreScripts">The scripts to ignore.</param>
 44        /// <param name="outputUnigrams">A value indicating whether to output
 45        /// both unigrams and bigrams (if true), or just bigrams (if false).
 46        /// Default is false.</param>
 47        public CjkBigramTokenFilter(string name, IList<CjkBigramTokenFilterScripts> ignoreScripts = default(IList<CjkBig
 848            : base(name)
 49        {
 850            IgnoreScripts = ignoreScripts;
 851            OutputUnigrams = outputUnigrams;
 52            CustomInit();
 853        }
 54
 55        /// <summary>
 56        /// An initialization method that performs custom operations like setting defaults
 57        /// </summary>
 58        partial void CustomInit();
 59
 60        /// <summary>
 61        /// Gets or sets the scripts to ignore.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "ignoreScripts")]
 4064        public IList<CjkBigramTokenFilterScripts> IgnoreScripts { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets a value indicating whether to output both unigrams and
 68        /// bigrams (if true), or just bigrams (if false). Default is false.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "outputUnigrams")]
 4071        public bool? OutputUnigrams { get; set; }
 72
 73        /// <summary>
 74        /// Validate the object.
 75        /// </summary>
 76        /// <exception cref="Rest.ValidationException">
 77        /// Thrown if validation fails
 78        /// </exception>
 79        public override void Validate()
 80        {
 881            base.Validate();
 882        }
 83    }
 84}