gotelem/frame_kind.go

27 lines
616 B
Go
Raw Normal View History

2023-04-20 20:26:29 +00:00
// Code generated by "stringer -output=frame_kind.go -type Kind"; DO NOT EDIT.
package gotelem
2023-04-20 20:26:29 +00:00
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[SFF-0]
_ = x[EFF-1]
_ = x[RTR-2]
_ = x[ERR-3]
}
const _Kind_name = "SFFEFFRTRERR"
var _Kind_index = [...]uint8{0, 3, 6, 9, 12}
func (i Kind) String() string {
if i >= Kind(len(_Kind_index)-1) {
return "Kind(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Kind_name[_Kind_index[i]:_Kind_index[i+1]]
}