blob: 86de09d225a5c80416fc12effc2ebe87b8c5e511 [file] [log] [blame]
// Code generated by "stringer -type=Direction"; DO NOT EDIT.
package alerts
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[BOTH-0]
_ = x[UP-1]
_ = x[DOWN-2]
_ = x[DIRECTION_EOL-3]
}
const _Direction_name = "BOTHUPDOWNDIRECTION_EOL"
var _Direction_index = [...]uint8{0, 4, 6, 10, 23}
func (i Direction) String() string {
if i < 0 || i >= Direction(len(_Direction_index)-1) {
return "Direction(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Direction_name[_Direction_index[i]:_Direction_index[i+1]]
}