blob: 782f8fbb8df2e47763b8a5b11e652586e22f002d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// 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]
_ = x[InvalidCategory-3]
}
const _Category_name = "BaseTemporalEnvironmentalinvalid"
var _Category_index = [...]uint8{0, 4, 12, 25, 32}
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]]
}
|