aboutsummaryrefslogtreecommitdiff
path: root/nvdmirror/updatetype_string.go
blob: 2a8128283e02d3e35f8f2d553cf492695573dc19 (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
27
28
// Code generated by "stringer -linecomment -type=UpdateType"; DO NOT EDIT.

package nvdmirror

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[UpdateCveYear-0]
	_ = x[UpdateCveMeta-1]
	_ = x[UpdateCpeMatch-2]
	_ = x[UpdateCpeDict-3]
	_ = x[UpdateCisaKevc-4]
	_ = x[UpdateCweList-5]
}

const _UpdateType_name = "cveyearcvemetacpematchcpedictkevccwe"

var _UpdateType_index = [...]uint8{0, 7, 14, 22, 29, 33, 36}

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