toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ColorSpace.follow:
      return 'FOLLOW';
    case ColorSpace.rec_601:
      return 'REC_601';
    case ColorSpace.rec_709:
      return 'REC_709';
    case ColorSpace.hdr10:
      return 'HDR10';
    case ColorSpace.hlg_2020:
      return 'HLG_2020';
  }
}