toHlsSegmentationMode method

HlsSegmentationMode toHlsSegmentationMode()

Implementation

HlsSegmentationMode toHlsSegmentationMode() {
  switch (this) {
    case 'USE_INPUT_SEGMENTATION':
      return HlsSegmentationMode.useInputSegmentation;
    case 'USE_SEGMENT_DURATION':
      return HlsSegmentationMode.useSegmentDuration;
  }
  throw Exception('$this is not known in enum HlsSegmentationMode');
}