File size: 680 Bytes
1e92f2d |
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 -type Result"; DO NOT EDIT.
package notification
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[ResultAcknowledge-0]
_ = x[ResultResolve-1]
_ = x[ResultEscalate-2]
}
const _Result_name = "ResultAcknowledgeResultResolveResultEscalate"
var _Result_index = [...]uint8{0, 17, 30, 44}
func (i Result) String() string {
if i < 0 || i >= Result(len(_Result_index)-1) {
return "Result(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Result_name[_Result_index[i]:_Result_index[i+1]]
}
|