-
Notifications
You must be signed in to change notification settings - Fork 57
/
suffix.enum.gen.go
46 lines (37 loc) · 933 Bytes
/
suffix.enum.gen.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
// Code generated by go-enum DO NOT EDIT.
// Version: example
// Revision: example
// Build Date: example
// Built By: example
//go:build example
// +build example
package example
import (
"errors"
"fmt"
)
const (
// SuffixGen is a Suffix of type gen.
SuffixGen Suffix = "gen"
)
var ErrInvalidSuffix = errors.New("not a valid Suffix")
// String implements the Stringer interface.
func (x Suffix) String() string {
return string(x)
}
// IsValid provides a quick way to determine if the typed value is
// part of the allowed enumerated values
func (x Suffix) IsValid() bool {
_, err := ParseSuffix(string(x))
return err == nil
}
var _SuffixValue = map[string]Suffix{
"gen": SuffixGen,
}
// ParseSuffix attempts to convert a string to a Suffix.
func ParseSuffix(name string) (Suffix, error) {
if x, ok := _SuffixValue[name]; ok {
return x, nil
}
return Suffix(""), fmt.Errorf("%s is %w", name, ErrInvalidSuffix)
}