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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// Code generated by "enumer -type Compression -trimprefix Compression -output compression_enum.go"; DO NOT EDIT.
package proto
import (
"fmt"
"strings"
)
const _CompressionName = "DisabledEnabled"
var _CompressionIndex = [...]uint8{0, 8, 15}
const _CompressionLowerName = "disabledenabled"
func (i Compression) String() string {
if i >= Compression(len(_CompressionIndex)-1) {
return fmt.Sprintf("Compression(%d)", i)
}
return _CompressionName[_CompressionIndex[i]:_CompressionIndex[i+1]]
}
// An "invalid array index" compiler error signifies that the constant values have changed.
// Re-run the stringer command to generate them again.
func _CompressionNoOp() {
var x [1]struct{}
_ = x[CompressionDisabled-(0)]
_ = x[CompressionEnabled-(1)]
}
var _CompressionValues = []Compression{CompressionDisabled, CompressionEnabled}
var _CompressionNameToValueMap = map[string]Compression{
_CompressionName[0:8]: CompressionDisabled,
_CompressionLowerName[0:8]: CompressionDisabled,
_CompressionName[8:15]: CompressionEnabled,
_CompressionLowerName[8:15]: CompressionEnabled,
}
var _CompressionNames = []string{
_CompressionName[0:8],
_CompressionName[8:15],
}
// CompressionString retrieves an enum value from the enum constants string name.
// Throws an error if the param is not part of the enum.
func CompressionString(s string) (Compression, error) {
if val, ok := _CompressionNameToValueMap[s]; ok {
return val, nil
}
if val, ok := _CompressionNameToValueMap[strings.ToLower(s)]; ok {
return val, nil
}
return 0, fmt.Errorf("%s does not belong to Compression values", s)
}
// CompressionValues returns all values of the enum
func CompressionValues() []Compression {
return _CompressionValues
}
// CompressionStrings returns a slice of all String values of the enum
func CompressionStrings() []string {
strs := make([]string, len(_CompressionNames))
copy(strs, _CompressionNames)
return strs
}
// IsACompression returns "true" if the value is listed in the enum definition. "false" otherwise
func (i Compression) IsACompression() bool {
for _, v := range _CompressionValues {
if i == v {
return true
}
}
return false
}
|