toValue method
Implementation
String toValue() {
switch (this) {
case ActionCategory.source:
return 'Source';
case ActionCategory.build:
return 'Build';
case ActionCategory.deploy:
return 'Deploy';
case ActionCategory.test:
return 'Test';
case ActionCategory.invoke:
return 'Invoke';
case ActionCategory.approval:
return 'Approval';
}
}