1 // Code generated by "stringer -type=Phase -linecomment"; DO NOT EDIT. 2 3 package filter 4 5 import "strconv" 6 7 func _() { 8 // An "invalid array index" compiler error signifies that the constant values have changed. 9 // Re-run the stringer command to generate them again. 10 var x [1]struct{} 11 _ = x[PhaseActuation-0] 12 _ = x[PhaseReconcile-1] 13 } 14 15 const _Phase_name = "ActuationReconcile" 16 17 var _Phase_index = [...]uint8{0, 9, 18} 18 19 func (i Phase) String() string { 20 if i < 0 || i >= Phase(len(_Phase_index)-1) { 21 return "Phase(" + strconv.FormatInt(int64(i), 10) + ")" 22 } 23 return _Phase_name[_Phase_index[i]:_Phase_index[i+1]] 24 } 25