mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 01:14:28 -05:00
30 lines
798 B
Go
30 lines
798 B
Go
|
// Code generated by "stringer -type=State"; DO NOT EDIT.
|
||
|
|
||
|
package state
|
||
|
|
||
|
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[Uninitialized-0]
|
||
|
_ = x[AcceptingInit-1]
|
||
|
_ = x[ActivatingNodes-2]
|
||
|
_ = x[NodeWaitingForClusterJoin-3]
|
||
|
_ = x[IsNode-4]
|
||
|
_ = x[Failed-5]
|
||
|
_ = x[maxState-6]
|
||
|
}
|
||
|
|
||
|
const _State_name = "UninitializedAcceptingInitActivatingNodesNodeWaitingForClusterJoinIsNodeFailedmaxState"
|
||
|
|
||
|
var _State_index = [...]uint8{0, 13, 26, 41, 66, 72, 78, 86}
|
||
|
|
||
|
func (i State) String() string {
|
||
|
if i >= State(len(_State_index)-1) {
|
||
|
return "State(" + strconv.FormatInt(int64(i), 10) + ")"
|
||
|
}
|
||
|
return _State_name[_State_index[i]:_State_index[i+1]]
|
||
|
}
|