2018-06-20 01:03:59 +02:00
|
|
|
// Code generated by "stringer -type Action"; DO NOT EDIT.
|
|
|
|
|
|
|
|
package plans
|
|
|
|
|
|
|
|
import "strconv"
|
|
|
|
|
2019-05-13 16:32:49 +02:00
|
|
|
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[NoOp-0]
|
|
|
|
_ = x[Create-43]
|
|
|
|
_ = x[Read-8592]
|
|
|
|
_ = x[Update-126]
|
|
|
|
_ = x[DeleteThenCreate-8723]
|
|
|
|
_ = x[CreateThenDelete-177]
|
|
|
|
_ = x[Delete-45]
|
|
|
|
}
|
|
|
|
|
2018-06-20 01:03:59 +02:00
|
|
|
const (
|
|
|
|
_Action_name_0 = "NoOp"
|
|
|
|
_Action_name_1 = "Create"
|
|
|
|
_Action_name_2 = "Delete"
|
|
|
|
_Action_name_3 = "Update"
|
2018-09-26 01:55:21 +02:00
|
|
|
_Action_name_4 = "CreateThenDelete"
|
2018-06-20 01:03:59 +02:00
|
|
|
_Action_name_5 = "Read"
|
2018-09-26 01:55:21 +02:00
|
|
|
_Action_name_6 = "DeleteThenCreate"
|
2018-06-20 01:03:59 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func (i Action) String() string {
|
|
|
|
switch {
|
|
|
|
case i == 0:
|
|
|
|
return _Action_name_0
|
|
|
|
case i == 43:
|
|
|
|
return _Action_name_1
|
|
|
|
case i == 45:
|
|
|
|
return _Action_name_2
|
|
|
|
case i == 126:
|
|
|
|
return _Action_name_3
|
|
|
|
case i == 177:
|
|
|
|
return _Action_name_4
|
|
|
|
case i == 8592:
|
|
|
|
return _Action_name_5
|
2018-09-26 01:55:21 +02:00
|
|
|
case i == 8723:
|
|
|
|
return _Action_name_6
|
2018-06-20 01:03:59 +02:00
|
|
|
default:
|
|
|
|
return "Action(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
|
|
}
|
|
|
|
}
|