github.com/kevinklinger/open_terraform@v1.3.6/noninternal/configs/configschema/nestingmode_string.go (about)

     1  // Code generated by "stringer -type=NestingMode"; DO NOT EDIT.
     2  
     3  package configschema
     4  
     5  import "strconv"
     6  
     7  func _() {
     8  	// An "invalid array index" compiler error signifies that the constant values have changed.
     9  	// Re-run the stringer command to generate them again.
    10  	var x [1]struct{}
    11  	_ = x[nestingModeInvalid-0]
    12  	_ = x[NestingSingle-1]
    13  	_ = x[NestingGroup-2]
    14  	_ = x[NestingList-3]
    15  	_ = x[NestingSet-4]
    16  	_ = x[NestingMap-5]
    17  }
    18  
    19  const _NestingMode_name = "nestingModeInvalidNestingSingleNestingGroupNestingListNestingSetNestingMap"
    20  
    21  var _NestingMode_index = [...]uint8{0, 18, 31, 43, 54, 64, 74}
    22  
    23  func (i NestingMode) String() string {
    24  	if i < 0 || i >= NestingMode(len(_NestingMode_index)-1) {
    25  		return "NestingMode(" + strconv.FormatInt(int64(i), 10) + ")"
    26  	}
    27  	return _NestingMode_name[_NestingMode_index[i]:_NestingMode_index[i+1]]
    28  }