From b3dc36421f133ea6983574891720e974cf7974dd Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 31 Jan 2022 11:09:58 -0500 Subject: initial commit --- internal/cvss/v3metrickey_string.go | 44 +++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 internal/cvss/v3metrickey_string.go (limited to 'internal/cvss/v3metrickey_string.go') diff --git a/internal/cvss/v3metrickey_string.go b/internal/cvss/v3metrickey_string.go new file mode 100644 index 0000000..9459daa --- /dev/null +++ b/internal/cvss/v3metrickey_string.go @@ -0,0 +1,44 @@ +// Code generated by "stringer -linecomment -type=V3MetricKey"; DO NOT EDIT. + +package cvss + +import "strconv" + +func _() { + // An "invalid array index" compiler error signifies that the constant values have changed. + // Re-run the stringer command to generate them again. + var x [1]struct{} + _ = x[V3AttackVector-0] + _ = x[V3AttackComplexity-1] + _ = x[V3PrivilegesRequired-2] + _ = x[V3UserInteraction-3] + _ = x[V3Scope-4] + _ = x[V3Confidentiality-5] + _ = x[V3Integrity-6] + _ = x[V3Availability-7] + _ = x[V3ExploitCodeMaturity-8] + _ = x[V3RemediationLevel-9] + _ = x[V3ReportConfidence-10] + _ = x[V3ConfidentialityRequirement-11] + _ = x[V3IntegrityRequirement-12] + _ = x[V3AvailabilityRequirement-13] + _ = x[V3ModifiedAttackVector-14] + _ = x[V3ModifiedAttackComplexity-15] + _ = x[V3ModifiedPrivilegesRequired-16] + _ = x[V3ModifiedUserInteraction-17] + _ = x[V3ModifiedScope-18] + _ = x[V3ModifiedConfidentiality-19] + _ = x[V3ModifiedIntegrity-20] + _ = x[V3ModifiedAvailability-21] +} + +const _V3MetricKey_name = "AVACPRUISCIAERLRCCRIRARMAVMACMPRMUIMSMCMIMA" + +var _V3MetricKey_index = [...]uint8{0, 2, 4, 6, 8, 9, 10, 11, 12, 13, 15, 17, 19, 21, 23, 26, 29, 32, 35, 37, 39, 41, 43} + +func (i V3MetricKey) String() string { + if i >= V3MetricKey(len(_V3MetricKey_index)-1) { + return "V3MetricKey(" + strconv.FormatInt(int64(i), 10) + ")" + } + return _V3MetricKey_name[_V3MetricKey_index[i]:_V3MetricKey_index[i+1]] +} -- cgit v1.2.3