toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case H264Telecine.none:
      return 'NONE';
    case H264Telecine.soft:
      return 'SOFT';
    case H264Telecine.hard:
      return 'HARD';
  }
}