mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
16 lines
792 B
Go
16 lines
792 B
Go
// Code generated by "stringer -type=apiMethod"; DO NOT EDIT.
|
|
|
|
package pilosa
|
|
|
|
import "strconv"
|
|
|
|
const _apiMethod_name = "apiClusterMessageapiCreateFieldapiCreateIndexapiDeleteFieldapiDeleteIndexapiDeleteViewapiExportCSVapiFragmentBlockDataapiFragmentBlocksapiFieldapiFieldAttrDiffapiImportapiImportValueapiIndexapiIndexAttrDiffapiQueryapiRecalculateCachesapiRemoveNodeapiResizeAbortapiSetCoordinatorapiShardNodesapiViews"
|
|
|
|
var _apiMethod_index = [...]uint16{0, 17, 31, 45, 59, 73, 86, 98, 118, 135, 143, 159, 168, 182, 190, 206, 214, 234, 247, 261, 278, 291, 299}
|
|
|
|
func (i apiMethod) String() string {
|
|
if i < 0 || i >= apiMethod(len(_apiMethod_index)-1) {
|
|
return "apiMethod(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _apiMethod_name[_apiMethod_index[i]:_apiMethod_index[i+1]]
|
|
}
|