blob: 28e1e91279f4936440dffd1ea1cbe075b9d4f61c (
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
|
// Code generated by "stringer -linecomment -type=Severity"; DO NOT EDIT.
package feed
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[SeverityNone-0]
_ = x[SeverityLow-1]
_ = x[SeverityMedium-2]
_ = x[SeverityHigh-3]
_ = x[SeverityCritical-4]
}
const _Severity_name = "NONELOWMEDIUMHIGHCRITICAL"
var _Severity_index = [...]uint8{0, 4, 7, 13, 17, 25}
func (i Severity) String() string {
if i >= Severity(len(_Severity_index)-1) {
return "Severity(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Severity_name[_Severity_index[i]:_Severity_index[i+1]]
}
|