26 lines
529 B
Go
26 lines
529 B
Go
// Code generated by "stringer -type=segmentKind"; DO NOT EDIT.
|
|
|
|
package protocol
|
|
|
|
import "strconv"
|
|
|
|
const (
|
|
_segmentKind_name_0 = "skInvalidskRequestskReply"
|
|
_segmentKind_name_1 = "skError"
|
|
)
|
|
|
|
var (
|
|
_segmentKind_index_0 = [...]uint8{0, 9, 18, 25}
|
|
)
|
|
|
|
func (i segmentKind) String() string {
|
|
switch {
|
|
case 0 <= i && i <= 2:
|
|
return _segmentKind_name_0[_segmentKind_index_0[i]:_segmentKind_index_0[i+1]]
|
|
case i == 5:
|
|
return _segmentKind_name_1
|
|
default:
|
|
return "segmentKind(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
}
|