1234567891011121314151617181920212223 |
- // Code generated by "stringer -type=ClientName -output=http_client_name_string.go"; DO NOT EDIT.
- package client
- import "strconv"
- 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[Client-0]
- }
- const _ClientName_name = "Client"
- var _ClientName_index = [...]uint8{0, 6}
- func (i ClientName) String() string {
- if i < 0 || i >= ClientName(len(_ClientName_index)-1) {
- return "ClientName(" + strconv.FormatInt(int64(i), 10) + ")"
- }
- return _ClientName_name[_ClientName_index[i]:_ClientName_index[i+1]]
- }
|