toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case TimecodeSource.embedded:
      return 'EMBEDDED';
    case TimecodeSource.zerobased:
      return 'ZEROBASED';
    case TimecodeSource.specifiedstart:
      return 'SPECIFIEDSTART';
  }
}