2020-05-14 01:06:03 +02:00
|
|
|
// Code generated by "stringer -type=Type"; DO NOT EDIT.
|
|
|
|
|
2021-10-15 20:36:56 +02:00
|
|
|
package attribute
|
2020-05-14 01:06:03 +02:00
|
|
|
|
|
|
|
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[INVALID-0]
|
|
|
|
_ = x[BOOL-1]
|
2021-02-17 02:23:58 +02:00
|
|
|
_ = x[INT64-2]
|
|
|
|
_ = x[FLOAT64-3]
|
|
|
|
_ = x[STRING-4]
|
2021-08-12 17:05:42 +02:00
|
|
|
_ = x[BOOLSLICE-5]
|
|
|
|
_ = x[INT64SLICE-6]
|
|
|
|
_ = x[FLOAT64SLICE-7]
|
|
|
|
_ = x[STRINGSLICE-8]
|
2020-05-14 01:06:03 +02:00
|
|
|
}
|
|
|
|
|
2021-09-10 17:51:02 +02:00
|
|
|
const _Type_name = "INVALIDBOOLINT64FLOAT64STRINGBOOLSLICEINT64SLICEFLOAT64SLICESTRINGSLICE"
|
2020-05-14 01:06:03 +02:00
|
|
|
|
2021-09-10 17:51:02 +02:00
|
|
|
var _Type_index = [...]uint8{0, 7, 11, 16, 23, 29, 38, 48, 60, 71}
|
2020-05-14 01:06:03 +02:00
|
|
|
|
|
|
|
func (i Type) String() string {
|
|
|
|
if i < 0 || i >= Type(len(_Type_index)-1) {
|
|
|
|
return "Type(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
|
|
}
|
|
|
|
return _Type_name[_Type_index[i]:_Type_index[i+1]]
|
|
|
|
}
|