toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case HlsWebdavHttpTransferMode.chunked:
      return 'CHUNKED';
    case HlsWebdavHttpTransferMode.nonChunked:
      return 'NON_CHUNKED';
  }
}