From 843c6168690f01a9a4a96f1c6e1aa6e3cde90096 Mon Sep 17 00:00:00 2001
From: Paul Duncan <pabs@pablotron.org>
Date: Mon, 31 Jan 2022 14:00:49 -0500
Subject: add internal/cvss/category_string.go

---
 internal/cvss/category_string.go | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 internal/cvss/category_string.go

diff --git a/internal/cvss/category_string.go b/internal/cvss/category_string.go
new file mode 100644
index 0000000..82a4868
--- /dev/null
+++ b/internal/cvss/category_string.go
@@ -0,0 +1,25 @@
+// Code generated by "stringer -linecomment -type=Category"; 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[Base-0]
+	_ = x[Temporal-1]
+	_ = x[Environmental-2]
+}
+
+const _Category_name = "BaseTemporalEnvironmental"
+
+var _Category_index = [...]uint8{0, 4, 12, 25}
+
+func (i Category) String() string {
+	if i >= Category(len(_Category_index)-1) {
+		return "Category(" + strconv.FormatInt(int64(i), 10) + ")"
+	}
+	return _Category_name[_Category_index[i]:_Category_index[i+1]]
+}
-- 
cgit v1.2.3