toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case H264ScanType.interlaced:
      return 'INTERLACED';
    case H264ScanType.progressive:
      return 'PROGRESSIVE';
  }
}