mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
77d3a1ad4d
bump enumer to v1.1.1 bump golangci-lint to v1.17.1 no `go mod tidy` because 1.13 and 1.12 seem to alter each other's output fixes #112
52 lines
1.0 KiB
Go
52 lines
1.0 KiB
Go
// Code generated by "stringer -type=State"; DO NOT EDIT.
|
|
|
|
package snapper
|
|
|
|
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[SyncUp-1]
|
|
_ = x[SyncUpErrWait-2]
|
|
_ = x[Planning-4]
|
|
_ = x[Snapshotting-8]
|
|
_ = x[Waiting-16]
|
|
_ = x[ErrorWait-32]
|
|
_ = x[Stopped-64]
|
|
}
|
|
|
|
const (
|
|
_State_name_0 = "SyncUpSyncUpErrWait"
|
|
_State_name_1 = "Planning"
|
|
_State_name_2 = "Snapshotting"
|
|
_State_name_3 = "Waiting"
|
|
_State_name_4 = "ErrorWait"
|
|
_State_name_5 = "Stopped"
|
|
)
|
|
|
|
var (
|
|
_State_index_0 = [...]uint8{0, 6, 19}
|
|
)
|
|
|
|
func (i State) String() string {
|
|
switch {
|
|
case 1 <= i && i <= 2:
|
|
i -= 1
|
|
return _State_name_0[_State_index_0[i]:_State_index_0[i+1]]
|
|
case i == 4:
|
|
return _State_name_1
|
|
case i == 8:
|
|
return _State_name_2
|
|
case i == 16:
|
|
return _State_name_3
|
|
case i == 32:
|
|
return _State_name_4
|
|
case i == 64:
|
|
return _State_name_5
|
|
default:
|
|
return "State(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
}
|