// Code generated by "stringer -type=AgentEvent"; 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[Start-0] _ = x[ManifestReceived-1] _ = x[AlgorithmReceived-2] _ = x[DataReceived-3] _ = x[RunComplete-4] _ = x[ResultsConsumed-5] _ = x[RunFailed-6] } const _AgentEvent_name = "StartManifestReceivedAlgorithmReceivedDataReceivedRunCompleteResultsConsumedRunFailed" var _AgentEvent_index = [...]uint8{0, 5, 21, 38, 50, 61, 76, 85} func (i AgentEvent) String() string { if i < 0 || i >= AgentEvent(len(_AgentEvent_index)-1) { return "AgentEvent(" + strconv.FormatInt(int64(i), 10) + ")" } return _AgentEvent_name[_AgentEvent_index[i]:_AgentEvent_index[i+1]] }