2020-06-23 11:59:10 +02:00
|
|
|
// Code generated by "stringer -type=vState"; DO NOT EDIT.
|
|
|
|
|
|
|
|
package vfs
|
|
|
|
|
|
|
|
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[vOK-0]
|
2020-11-10 13:58:03 +01:00
|
|
|
_ = x[vAddFile-1]
|
|
|
|
_ = x[vAddDir-2]
|
|
|
|
_ = x[vDel-3]
|
2020-06-23 11:59:10 +02:00
|
|
|
}
|
|
|
|
|
2020-11-10 13:58:03 +01:00
|
|
|
const _vState_name = "vOKvAddFilevAddDirvDel"
|
2020-06-23 11:59:10 +02:00
|
|
|
|
2020-11-10 13:58:03 +01:00
|
|
|
var _vState_index = [...]uint8{0, 3, 11, 18, 22}
|
2020-06-23 11:59:10 +02:00
|
|
|
|
|
|
|
func (i vState) String() string {
|
|
|
|
if i >= vState(len(_vState_index)-1) {
|
|
|
|
return "vState(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
|
|
}
|
|
|
|
return _vState_name[_vState_index[i]:_vState_index[i+1]]
|
|
|
|
}
|