toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ProresInterlaceMode.progressive:
      return 'PROGRESSIVE';
    case ProresInterlaceMode.topField:
      return 'TOP_FIELD';
    case ProresInterlaceMode.bottomField:
      return 'BOTTOM_FIELD';
    case ProresInterlaceMode.followTopField:
      return 'FOLLOW_TOP_FIELD';
    case ProresInterlaceMode.followBottomField:
      return 'FOLLOW_BOTTOM_FIELD';
  }
}