toValue method
Implementation
String toValue() {
switch (this) {
case StepExecutionFilterKey.startTimeBefore:
return 'StartTimeBefore';
case StepExecutionFilterKey.startTimeAfter:
return 'StartTimeAfter';
case StepExecutionFilterKey.stepExecutionStatus:
return 'StepExecutionStatus';
case StepExecutionFilterKey.stepExecutionId:
return 'StepExecutionId';
case StepExecutionFilterKey.stepName:
return 'StepName';
case StepExecutionFilterKey.action:
return 'Action';
}
}