-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgender_enumer.go
68 lines (55 loc) · 1.58 KB
/
gender_enumer.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Code generated by "enumer -type=Gender -linecomment -json"; DO NOT EDIT.
//
package azuretexttospeech
import (
"encoding/json"
"fmt"
)
const _GenderName = "MaleFemale"
var _GenderIndex = [...]uint8{0, 4, 10}
func (i Gender) String() string {
if i < 0 || i >= Gender(len(_GenderIndex)-1) {
return fmt.Sprintf("Gender(%d)", i)
}
return _GenderName[_GenderIndex[i]:_GenderIndex[i+1]]
}
var _GenderValues = []Gender{0, 1}
var _GenderNameToValueMap = map[string]Gender{
_GenderName[0:4]: 0,
_GenderName[4:10]: 1,
}
// GenderString retrieves an enum value from the enum constants string name.
// Throws an error if the param is not part of the enum.
func GenderString(s string) (Gender, error) {
if val, ok := _GenderNameToValueMap[s]; ok {
return val, nil
}
return 0, fmt.Errorf("%s does not belong to Gender values", s)
}
// GenderValues returns all values of the enum
func GenderValues() []Gender {
return _GenderValues
}
// IsAGender returns "true" if the value is listed in the enum definition. "false" otherwise
func (i Gender) IsAGender() bool {
for _, v := range _GenderValues {
if i == v {
return true
}
}
return false
}
// MarshalJSON implements the json.Marshaler interface for Gender
func (i Gender) MarshalJSON() ([]byte, error) {
return json.Marshal(i.String())
}
// UnmarshalJSON implements the json.Unmarshaler interface for Gender
func (i *Gender) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return fmt.Errorf("Gender should be a string, got %s", data)
}
var err error
*i, err = GenderString(s)
return err
}