opentofu/configs/configschema/nestingmode_string.go
Martin Atkins 479c6b2466 move "configschema" from "config" to "configs"
The "config" package is no longer used and will be removed as part
of the 0.12 release cleanup. Since configschema is part of the
"new world" of configuration modelling, it makes more sense for
it to live as a subdirectory of the newer "configs" package.
2018-10-16 18:50:29 -07:00

17 lines
497 B
Go

// Code generated by "stringer -type=NestingMode"; DO NOT EDIT.
package configschema
import "strconv"
const _NestingMode_name = "nestingModeInvalidNestingSingleNestingListNestingSetNestingMap"
var _NestingMode_index = [...]uint8{0, 18, 31, 42, 52, 62}
func (i NestingMode) String() string {
if i < 0 || i >= NestingMode(len(_NestingMode_index)-1) {
return "NestingMode(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _NestingMode_name[_NestingMode_index[i]:_NestingMode_index[i+1]]
}