github.com/pulumi/terraform@v1.4.0/pkg/addrs/checktype_string.go (about)

     1  // Code generated by "stringer -type=CheckType check.go"; DO NOT EDIT.
     2  
     3  package addrs
     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[InvalidCondition-0]
    12  	_ = x[ResourcePrecondition-1]
    13  	_ = x[ResourcePostcondition-2]
    14  	_ = x[OutputPrecondition-3]
    15  }
    16  
    17  const _CheckType_name = "InvalidConditionResourcePreconditionResourcePostconditionOutputPrecondition"
    18  
    19  var _CheckType_index = [...]uint8{0, 16, 36, 57, 75}
    20  
    21  func (i CheckType) String() string {
    22  	if i < 0 || i >= CheckType(len(_CheckType_index)-1) {
    23  		return "CheckType(" + strconv.FormatInt(int64(i), 10) + ")"
    24  	}
    25  	return _CheckType_name[_CheckType_index[i]:_CheckType_index[i+1]]
    26  }