toValue method
Implementation
String toValue() {
switch (this) {
case ContainerType.f4v:
return 'F4V';
case ContainerType.ismv:
return 'ISMV';
case ContainerType.m2ts:
return 'M2TS';
case ContainerType.m3u8:
return 'M3U8';
case ContainerType.cmfc:
return 'CMFC';
case ContainerType.mov:
return 'MOV';
case ContainerType.mp4:
return 'MP4';
case ContainerType.mpd:
return 'MPD';
case ContainerType.mxf:
return 'MXF';
case ContainerType.webm:
return 'WEBM';
case ContainerType.raw:
return 'RAW';
}
}