mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
77d3a1ad4d
bump enumer to v1.1.1 bump golangci-lint to v1.17.1 no `go mod tidy` because 1.13 and 1.12 seem to alter each other's output fixes #112
51 lines
1.3 KiB
Go
51 lines
1.3 KiB
Go
// Code generated by "enumer -type=errorClass"; DO NOT EDIT.
|
|
|
|
//
|
|
package driver
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
const _errorClassName = "errorClassPermanenterrorClassTemporaryConnectivityRelated"
|
|
|
|
var _errorClassIndex = [...]uint8{0, 19, 57}
|
|
|
|
func (i errorClass) String() string {
|
|
if i < 0 || i >= errorClass(len(_errorClassIndex)-1) {
|
|
return fmt.Sprintf("errorClass(%d)", i)
|
|
}
|
|
return _errorClassName[_errorClassIndex[i]:_errorClassIndex[i+1]]
|
|
}
|
|
|
|
var _errorClassValues = []errorClass{0, 1}
|
|
|
|
var _errorClassNameToValueMap = map[string]errorClass{
|
|
_errorClassName[0:19]: 0,
|
|
_errorClassName[19:57]: 1,
|
|
}
|
|
|
|
// errorClassString retrieves an enum value from the enum constants string name.
|
|
// Throws an error if the param is not part of the enum.
|
|
func errorClassString(s string) (errorClass, error) {
|
|
if val, ok := _errorClassNameToValueMap[s]; ok {
|
|
return val, nil
|
|
}
|
|
return 0, fmt.Errorf("%s does not belong to errorClass values", s)
|
|
}
|
|
|
|
// errorClassValues returns all values of the enum
|
|
func errorClassValues() []errorClass {
|
|
return _errorClassValues
|
|
}
|
|
|
|
// IsAerrorClass returns "true" if the value is listed in the enum definition. "false" otherwise
|
|
func (i errorClass) IsAerrorClass() bool {
|
|
for _, v := range _errorClassValues {
|
|
if i == v {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|