toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case VerifyMode.pointInTimeConsistent:
      return 'POINT_IN_TIME_CONSISTENT';
    case VerifyMode.onlyFilesTransferred:
      return 'ONLY_FILES_TRANSFERRED';
    case VerifyMode.none:
      return 'NONE';
  }
}