1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
// Code generated by "stringer -type=blockID -trimprefix=block"; DO NOT EDIT.
package estream
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[blockPlainKey-1]
_ = x[blockEncryptedKey-2]
_ = x[blockEncStream-3]
_ = x[blockPlainStream-4]
_ = x[blockDatablock-5]
_ = x[blockEOS-6]
_ = x[blockEOF-7]
_ = x[blockError-8]
}
const _blockID_name = "PlainKeyEncryptedKeyEncStreamPlainStreamDatablockEOSEOFError"
var _blockID_index = [...]uint8{0, 8, 20, 29, 40, 49, 52, 55, 60}
func (i blockID) String() string {
i -= 1
if i < 0 || i >= blockID(len(_blockID_index)-1) {
return "blockID(" + strconv.FormatInt(int64(i+1), 10) + ")"
}
return _blockID_name[_blockID_index[i]:_blockID_index[i+1]]
}
|