mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-19 21:47:50 +08:00
24 lines
642 B
Go
24 lines
642 B
Go
|
// 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]]
|
||
|
}
|