-
Notifications
You must be signed in to change notification settings - Fork 0
/
methviewflags_string.go
44 lines (36 loc) · 1.3 KB
/
methviewflags_string.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Code generated by "stringer -type=MethViewFlags"; DO NOT EDIT.
package giv
import (
"errors"
"strconv"
)
var _ = errors.New("dummy error")
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[MethViewConfirm-0]
_ = x[MethViewShowReturn-1]
_ = x[MethViewNoUpdateAfter-2]
_ = x[MethViewHasSubMenu-3]
_ = x[MethViewHasSubMenuVal-4]
_ = x[MethViewKeyFun-5]
_ = x[MethViewFlagsN-6]
}
const _MethViewFlags_name = "MethViewConfirmMethViewShowReturnMethViewNoUpdateAfterMethViewHasSubMenuMethViewHasSubMenuValMethViewKeyFunMethViewFlagsN"
var _MethViewFlags_index = [...]uint8{0, 15, 33, 54, 72, 93, 107, 121}
func (i MethViewFlags) String() string {
if i < 0 || i >= MethViewFlags(len(_MethViewFlags_index)-1) {
return "MethViewFlags(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _MethViewFlags_name[_MethViewFlags_index[i]:_MethViewFlags_index[i+1]]
}
func (i *MethViewFlags) FromString(s string) error {
for j := 0; j < len(_MethViewFlags_index)-1; j++ {
if s == _MethViewFlags_name[_MethViewFlags_index[j]:_MethViewFlags_index[j+1]] {
*i = MethViewFlags(j)
return nil
}
}
return errors.New("String: " + s + " is not a valid option for type: MethViewFlags")
}