diff options
Diffstat (limited to 'device/devicestate_string.go')
-rw-r--r-- | device/devicestate_string.go | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/device/devicestate_string.go b/device/devicestate_string.go new file mode 100644 index 0000000..e8f16b0 --- /dev/null +++ b/device/devicestate_string.go @@ -0,0 +1,26 @@ +// Code generated by "stringer -type deviceState -trimprefix=deviceState"; DO NOT EDIT. + +package device + +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[deviceStateNew-0] + _ = x[deviceStateDown-1] + _ = x[deviceStateUp-2] + _ = x[deviceStateClosed-3] +} + +const _deviceState_name = "NewDownUpClosed" + +var _deviceState_index = [...]uint8{0, 3, 7, 9, 15} + +func (i deviceState) String() string { + if i >= deviceState(len(_deviceState_index)-1) { + return "deviceState(" + strconv.FormatInt(int64(i), 10) + ")" + } + return _deviceState_name[_deviceState_index[i]:_deviceState_index[i+1]] +} |