// Code generated by "stringer -type=Movement"; DO NOT EDIT. package main 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[Unknown-0] _ = x[Forward-1] _ = x[Backward-2] _ = x[Left-3] _ = x[Right-4] } const _Movement_name = "UnknownForwardBackwardLeftRight" var _Movement_index = [...]uint8{0, 7, 14, 22, 26, 31} func (i Movement) String() string { if i < 0 || i >= Movement(len(_Movement_index)-1) { return "Movement(" + strconv.FormatInt(int64(i), 10) + ")" } return _Movement_name[_Movement_index[i]:_Movement_index[i+1]] }