< Summary

Class:Azure.Analytics.Synapse.Artifacts.Models.ParameterType
Assembly:Azure.Analytics.Synapse.Artifacts
File(s):C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\ParameterType.cs
Covered lines:0
Uncovered lines:16
Coverable lines:16
Total lines:66
Line coverage:0% (0 of 16)
Covered branches:0
Total branches:6
Branch coverage:0% (0 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%0%
get_Object()-0%100%
get_String()-0%100%
get_Int()-0%100%
get_Float()-0%100%
get_Bool()-0%100%
get_Array()-0%100%
get_SecureString()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-0%100%
GetHashCode()-0%0%
ToString()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\ParameterType.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.Analytics.Synapse.Artifacts.Models
 12{
 13    /// <summary> Parameter type. </summary>
 14    public readonly partial struct ParameterType : IEquatable<ParameterType>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="ParameterType"/> values are the same. </summary>
 19        /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
 20        public ParameterType(string value)
 21        {
 022            _value = value ?? throw new ArgumentNullException(nameof(value));
 023        }
 24
 25        private const string ObjectValue = "Object";
 26        private const string StringValue = "String";
 27        private const string IntValue = "Int";
 28        private const string FloatValue = "Float";
 29        private const string BoolValue = "Bool";
 30        private const string ArrayValue = "Array";
 31        private const string SecureStringValue = "SecureString";
 32
 33        /// <summary> Object. </summary>
 034        public static ParameterType Object { get; } = new ParameterType(ObjectValue);
 35        /// <summary> String. </summary>
 036        public static ParameterType String { get; } = new ParameterType(StringValue);
 37        /// <summary> Int. </summary>
 038        public static ParameterType Int { get; } = new ParameterType(IntValue);
 39        /// <summary> Float. </summary>
 040        public static ParameterType Float { get; } = new ParameterType(FloatValue);
 41        /// <summary> Bool. </summary>
 042        public static ParameterType Bool { get; } = new ParameterType(BoolValue);
 43        /// <summary> Array. </summary>
 044        public static ParameterType Array { get; } = new ParameterType(ArrayValue);
 45        /// <summary> SecureString. </summary>
 046        public static ParameterType SecureString { get; } = new ParameterType(SecureStringValue);
 47        /// <summary> Determines if two <see cref="ParameterType"/> values are the same. </summary>
 048        public static bool operator ==(ParameterType left, ParameterType right) => left.Equals(right);
 49        /// <summary> Determines if two <see cref="ParameterType"/> values are not the same. </summary>
 050        public static bool operator !=(ParameterType left, ParameterType right) => !left.Equals(right);
 51        /// <summary> Converts a string to a <see cref="ParameterType"/>. </summary>
 052        public static implicit operator ParameterType(string value) => new ParameterType(value);
 53
 54        /// <inheritdoc />
 55        [EditorBrowsable(EditorBrowsableState.Never)]
 056        public override bool Equals(object obj) => obj is ParameterType other && Equals(other);
 57        /// <inheritdoc />
 058        public bool Equals(ParameterType other) => string.Equals(_value, other._value, StringComparison.InvariantCulture
 59
 60        /// <inheritdoc />
 61        [EditorBrowsable(EditorBrowsableState.Never)]
 062        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 63        /// <inheritdoc />
 064        public override string ToString() => _value;
 65    }
 66}