17 lines
472 B
Go
17 lines
472 B
Go
// Code generated by "stringer -type=FeatureFlag"; DO NOT EDIT
|
|
|
|
package features
|
|
|
|
import "fmt"
|
|
|
|
const _FeatureFlag_name = "unusedIDNASupportAllowAccountDeactivationCertStatusOptimizationsMigrated"
|
|
|
|
var _FeatureFlag_index = [...]uint8{0, 6, 17, 41, 72}
|
|
|
|
func (i FeatureFlag) String() string {
|
|
if i < 0 || i >= FeatureFlag(len(_FeatureFlag_index)-1) {
|
|
return fmt.Sprintf("FeatureFlag(%d)", i)
|
|
}
|
|
return _FeatureFlag_name[_FeatureFlag_index[i]:_FeatureFlag_index[i+1]]
|
|
}
|