in common/types/shared.go [2147:2236]
func (e EventType) String() string {
w := int32(e)
switch w {
case 0:
return "WorkflowExecutionStarted"
case 1:
return "WorkflowExecutionCompleted"
case 2:
return "WorkflowExecutionFailed"
case 3:
return "WorkflowExecutionTimedOut"
case 4:
return "DecisionTaskScheduled"
case 5:
return "DecisionTaskStarted"
case 6:
return "DecisionTaskCompleted"
case 7:
return "DecisionTaskTimedOut"
case 8:
return "DecisionTaskFailed"
case 9:
return "ActivityTaskScheduled"
case 10:
return "ActivityTaskStarted"
case 11:
return "ActivityTaskCompleted"
case 12:
return "ActivityTaskFailed"
case 13:
return "ActivityTaskTimedOut"
case 14:
return "ActivityTaskCancelRequested"
case 15:
return "RequestCancelActivityTaskFailed"
case 16:
return "ActivityTaskCanceled"
case 17:
return "TimerStarted"
case 18:
return "TimerFired"
case 19:
return "CancelTimerFailed"
case 20:
return "TimerCanceled"
case 21:
return "WorkflowExecutionCancelRequested"
case 22:
return "WorkflowExecutionCanceled"
case 23:
return "RequestCancelExternalWorkflowExecutionInitiated"
case 24:
return "RequestCancelExternalWorkflowExecutionFailed"
case 25:
return "ExternalWorkflowExecutionCancelRequested"
case 26:
return "MarkerRecorded"
case 27:
return "WorkflowExecutionSignaled"
case 28:
return "WorkflowExecutionTerminated"
case 29:
return "WorkflowExecutionContinuedAsNew"
case 30:
return "StartChildWorkflowExecutionInitiated"
case 31:
return "StartChildWorkflowExecutionFailed"
case 32:
return "ChildWorkflowExecutionStarted"
case 33:
return "ChildWorkflowExecutionCompleted"
case 34:
return "ChildWorkflowExecutionFailed"
case 35:
return "ChildWorkflowExecutionCanceled"
case 36:
return "ChildWorkflowExecutionTimedOut"
case 37:
return "ChildWorkflowExecutionTerminated"
case 38:
return "SignalExternalWorkflowExecutionInitiated"
case 39:
return "SignalExternalWorkflowExecutionFailed"
case 40:
return "ExternalWorkflowExecutionSignaled"
case 41:
return "UpsertWorkflowSearchAttributes"
}
return fmt.Sprintf("EventType(%d)", w)
}