mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-26 15:00:15 -05:00
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.
17 lines
497 B
Go
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]]
|
|
}
|