You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
642 B
23 lines
642 B
// 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]]
|
|
}
|