route/vendor/github.com/hashicorp/terraform/terraform/graphtype_string.go

17 lines
564 B
Go

// Code generated by "stringer -type=GraphType context_graph_type.go"; DO NOT EDIT.
package terraform
import "strconv"
const _GraphType_name = "GraphTypeInvalidGraphTypeLegacyGraphTypeRefreshGraphTypePlanGraphTypePlanDestroyGraphTypeApplyGraphTypeInputGraphTypeValidate"
var _GraphType_index = [...]uint8{0, 16, 31, 47, 60, 80, 94, 108, 125}
func (i GraphType) String() string {
if i >= GraphType(len(_GraphType_index)-1) {
return "GraphType(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _GraphType_name[_GraphType_index[i]:_GraphType_index[i+1]]
}