< Summary

Class:Azure.Search.Documents.Indexes.Models.RegexFlag
Assembly:Azure.Search.Documents
File(s):C:\Git\azure-sdk-for-net\sdk\search\Azure.Search.Documents\src\Generated\Models\RegexFlag.cs
Covered lines:7
Uncovered lines:10
Coverable lines:17
Total lines:69
Line coverage:41.1% (7 of 17)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_CanonEq()-0%100%
get_CaseInsensitive()-100%100%
get_Comments()-0%100%
get_DotAll()-0%100%
get_Literal()-100%100%
get_Multiline()-100%100%
get_UnicodeCase()-0%100%
get_UnixLines()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-100%100%
GetHashCode()-0%0%
ToString()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Azure.Search.Documents\src\Generated\Models\RegexFlag.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System;
 9using System.ComponentModel;
 10
 11namespace Azure.Search.Documents.Indexes.Models
 12{
 13    /// <summary> Defines flags that can be combined to control how regular expressions are used in the pattern analyzer
 14    public readonly partial struct RegexFlag : IEquatable<RegexFlag>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="RegexFlag"/> values are the same. </summary>
 19        /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
 20        public RegexFlag(string value)
 21        {
 1822            _value = value ?? throw new ArgumentNullException(nameof(value));
 1823        }
 24
 25        private const string CanonEqValue = "CANON_EQ";
 26        private const string CaseInsensitiveValue = "CASE_INSENSITIVE";
 27        private const string CommentsValue = "COMMENTS";
 28        private const string DotAllValue = "DOTALL";
 29        private const string LiteralValue = "LITERAL";
 30        private const string MultilineValue = "MULTILINE";
 31        private const string UnicodeCaseValue = "UNICODE_CASE";
 32        private const string UnixLinesValue = "UNIX_LINES";
 33
 34        /// <summary> Enables canonical equivalence. </summary>
 035        public static RegexFlag CanonEq { get; } = new RegexFlag(CanonEqValue);
 36        /// <summary> Enables case-insensitive matching. </summary>
 737        public static RegexFlag CaseInsensitive { get; } = new RegexFlag(CaseInsensitiveValue);
 38        /// <summary> Permits whitespace and comments in the pattern. </summary>
 039        public static RegexFlag Comments { get; } = new RegexFlag(CommentsValue);
 40        /// <summary> Enables dotall mode. </summary>
 041        public static RegexFlag DotAll { get; } = new RegexFlag(DotAllValue);
 42        /// <summary> Enables literal parsing of the pattern. </summary>
 343        public static RegexFlag Literal { get; } = new RegexFlag(LiteralValue);
 44        /// <summary> Enables multiline mode. </summary>
 345        public static RegexFlag Multiline { get; } = new RegexFlag(MultilineValue);
 46        /// <summary> Enables Unicode-aware case folding. </summary>
 047        public static RegexFlag UnicodeCase { get; } = new RegexFlag(UnicodeCaseValue);
 48        /// <summary> Enables Unix lines mode. </summary>
 049        public static RegexFlag UnixLines { get; } = new RegexFlag(UnixLinesValue);
 50        /// <summary> Determines if two <see cref="RegexFlag"/> values are the same. </summary>
 051        public static bool operator ==(RegexFlag left, RegexFlag right) => left.Equals(right);
 52        /// <summary> Determines if two <see cref="RegexFlag"/> values are not the same. </summary>
 053        public static bool operator !=(RegexFlag left, RegexFlag right) => !left.Equals(right);
 54        /// <summary> Converts a string to a <see cref="RegexFlag"/>. </summary>
 055        public static implicit operator RegexFlag(string value) => new RegexFlag(value);
 56
 57        /// <inheritdoc />
 58        [EditorBrowsable(EditorBrowsableState.Never)]
 059        public override bool Equals(object obj) => obj is RegexFlag other && Equals(other);
 60        /// <inheritdoc />
 661        public bool Equals(RegexFlag other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgno
 62
 63        /// <inheritdoc />
 64        [EditorBrowsable(EditorBrowsableState.Never)]
 065        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 66        /// <inheritdoc />
 2067        public override string ToString() => _value;
 68    }
 69}