github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/cli/keytype_string.go (about)

     1  // Code generated by "stringer -type=keyType"; DO NOT EDIT.
     2  
     3  package cli
     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[raw-0]
    12  	_ = x[human-1]
    13  	_ = x[rangeID-2]
    14  	_ = x[hex-3]
    15  }
    16  
    17  const _keyType_name = "rawhumanrangeIDhex"
    18  
    19  var _keyType_index = [...]uint8{0, 3, 8, 15, 18}
    20  
    21  func (i keyType) String() string {
    22  	if i < 0 || i >= keyType(len(_keyType_index)-1) {
    23  		return "keyType(" + strconv.FormatInt(int64(i), 10) + ")"
    24  	}
    25  	return _keyType_name[_keyType_index[i]:_keyType_index[i+1]]
    26  }