// Code generated by "stringer -type=Status"; DO NOT EDIT. package agent 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[IdleState-0] _ = x[InProgress-1] _ = x[Ready-2] _ = x[Completed-3] _ = x[Terminated-4] _ = x[Warning-5] _ = x[Starting-6] } const _Status_name = "IdleStateInProgressReadyCompletedTerminatedWarningStarting" var _Status_index = [...]uint8{0, 9, 19, 24, 33, 43, 50, 58} func (i Status) String() string { if i >= Status(len(_Status_index)-1) { return "Status(" + strconv.FormatInt(int64(i), 10) + ")" } return _Status_name[_Status_index[i]:_Status_index[i+1]] }