mirror of https://github.com/minio/minio.git
24 lines
790 B
Go
24 lines
790 B
Go
|
// Code generated by "stringer -type=batchReplicationMetric -trimprefix=batchReplicationMetric batch-handlers.go"; DO NOT EDIT.
|
||
|
|
||
|
package cmd
|
||
|
|
||
|
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[batchReplicationMetricObject-0]
|
||
|
}
|
||
|
|
||
|
const _batchReplicationMetric_name = "Object"
|
||
|
|
||
|
var _batchReplicationMetric_index = [...]uint8{0, 6}
|
||
|
|
||
|
func (i batchReplicationMetric) String() string {
|
||
|
if i >= batchReplicationMetric(len(_batchReplicationMetric_index)-1) {
|
||
|
return "batchReplicationMetric(" + strconv.FormatInt(int64(i), 10) + ")"
|
||
|
}
|
||
|
return _batchReplicationMetric_name[_batchReplicationMetric_index[i]:_batchReplicationMetric_index[i+1]]
|
||
|
}
|