aboutsummaryrefslogtreecommitdiff
path: root/cvss/version_string.go
blob: 03e8904350f96b3d39a4a3f94bfdf86083951724 (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
// Code generated by "stringer -linecomment -type=Version"; 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[V20-0]
	_ = x[V30-1]
	_ = x[V31-2]
}

const _Version_name = "2.03.03.1"

var _Version_index = [...]uint8{0, 3, 6, 9}

func (i Version) String() string {
	if i >= Version(len(_Version_index)-1) {
		return "Version(" + strconv.FormatInt(int64(i), 10) + ")"
	}
	return _Version_name[_Version_index[i]:_Version_index[i+1]]
}