toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case RemediationActionType.remove:
      return 'REMOVE';
    case RemediationActionType.modify:
      return 'MODIFY';
  }
}