toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case UpdateActionType.createOrUpdate:
      return 'CREATE_OR_UPDATE';
    case UpdateActionType.delete:
      return 'DELETE';
  }
}