aboutsummaryrefslogtreecommitdiff
path: root/weed/util/http/client/http_client_name_string.go
blob: 652fcdaac69cbc6c4d87b4b205535109a164af9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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]]
}