toValue method
Implementation
String toValue() {
switch (this) {
case DeinterlaceAlgorithm.interpolate:
return 'INTERPOLATE';
case DeinterlaceAlgorithm.interpolateTicker:
return 'INTERPOLATE_TICKER';
case DeinterlaceAlgorithm.blend:
return 'BLEND';
case DeinterlaceAlgorithm.blendTicker:
return 'BLEND_TICKER';
}
}