toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case PreserveDeletedFiles.preserve:
      return 'PRESERVE';
    case PreserveDeletedFiles.remove:
      return 'REMOVE';
  }
}