mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 07:43:40 +00:00
31 lines
1002 B
Go
31 lines
1002 B
Go
// Code generated by "stringer -type=Milestone"; DO NOT EDIT.
|
|
|
|
package milestone
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[unknown-0]
|
|
_ = x[InstanceCreated-1]
|
|
_ = x[AuthenticationSucceededOnInstance-2]
|
|
_ = x[ProjectCreated-3]
|
|
_ = x[ApplicationCreated-4]
|
|
_ = x[AuthenticationSucceededOnApplication-5]
|
|
_ = x[InstanceDeleted-6]
|
|
_ = x[milestonesCount-7]
|
|
}
|
|
|
|
const _Milestone_name = "unknownInstanceCreatedAuthenticationSucceededOnInstanceProjectCreatedApplicationCreatedAuthenticationSucceededOnApplicationInstanceDeletedmilestonesCount"
|
|
|
|
var _Milestone_index = [...]uint8{0, 7, 22, 55, 69, 87, 123, 138, 153}
|
|
|
|
func (i Milestone) String() string {
|
|
if i < 0 || i >= Milestone(len(_Milestone_index)-1) {
|
|
return "Milestone(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _Milestone_name[_Milestone_index[i]:_Milestone_index[i+1]]
|
|
}
|