17 lines
450 B
Go
17 lines
450 B
Go
// Code generated by "stringer -type=FieldType"; DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
import "strconv"
|
|
|
|
const _FieldType_name = "IntegerFloatBooleanStringEmptyUnsigned"
|
|
|
|
var _FieldType_index = [...]uint8{0, 7, 12, 19, 25, 30, 38}
|
|
|
|
func (i FieldType) String() string {
|
|
if i < 0 || i >= FieldType(len(_FieldType_index)-1) {
|
|
return "FieldType(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _FieldType_name[_FieldType_index[i]:_FieldType_index[i+1]]
|
|
}
|