github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/pkg/model/v1alpha1/apiversion_string.go (about)

     1  // Code generated by "stringer -type=APIVersion"; DO NOT EDIT.
     2  
     3  package v1alpha1
     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[unknown-0]
    12  	_ = x[V1alpha1-1]
    13  	_ = x[V1beta1-2]
    14  	_ = x[done-3]
    15  }
    16  
    17  const _APIVersion_name = "unknownV1alpha1V1beta1done"
    18  
    19  var _APIVersion_index = [...]uint8{0, 7, 15, 22, 26}
    20  
    21  func (i APIVersion) String() string {
    22  	if i < 0 || i >= APIVersion(len(_APIVersion_index)-1) {
    23  		return "APIVersion(" + strconv.FormatInt(int64(i), 10) + ")"
    24  	}
    25  	return _APIVersion_name[_APIVersion_index[i]:_APIVersion_index[i+1]]
    26  }