toCmafManifestDurationFormat method

CmafManifestDurationFormat toCmafManifestDurationFormat()

Implementation

CmafManifestDurationFormat toCmafManifestDurationFormat() {
  switch (this) {
    case 'FLOATING_POINT':
      return CmafManifestDurationFormat.floatingPoint;
    case 'INTEGER':
      return CmafManifestDurationFormat.integer;
  }
  throw Exception('$this is not known in enum CmafManifestDurationFormat');
}