toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case DASHPlaybackMode.live:
      return 'LIVE';
    case DASHPlaybackMode.liveReplay:
      return 'LIVE_REPLAY';
    case DASHPlaybackMode.onDemand:
      return 'ON_DEMAND';
  }
}