2023-09-08 13:43:18 -04:00
|
|
|
// Code generated by "stringer -type=Progress progress.go"; DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package moduletest
|
|
|
|
|
|
|
|
|
|
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[Starting-0]
|
2023-10-02 03:14:20 -04:00
|
|
|
_ = x[Running-1]
|
|
|
|
|
_ = x[TearDown-2]
|
|
|
|
|
_ = x[Complete-3]
|
2023-09-08 13:43:18 -04:00
|
|
|
}
|
|
|
|
|
|
2023-10-02 03:14:20 -04:00
|
|
|
const _Progress_name = "StartingRunningTearDownComplete"
|
2023-09-08 13:43:18 -04:00
|
|
|
|
2023-10-02 03:14:20 -04:00
|
|
|
var _Progress_index = [...]uint8{0, 8, 15, 23, 31}
|
2023-09-08 13:43:18 -04:00
|
|
|
|
|
|
|
|
func (i Progress) String() string {
|
2025-11-17 10:01:28 -05:00
|
|
|
idx := int(i) - 0
|
|
|
|
|
if i < 0 || idx >= len(_Progress_index)-1 {
|
2023-09-08 13:43:18 -04:00
|
|
|
return "Progress(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
|
|
|
}
|
2025-11-17 10:01:28 -05:00
|
|
|
return _Progress_name[_Progress_index[idx]:_Progress_index[idx+1]]
|
2023-09-08 13:43:18 -04:00
|
|
|
}
|