toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case OutputSdt.sdtFollow:
      return 'SDT_FOLLOW';
    case OutputSdt.sdtFollowIfPresent:
      return 'SDT_FOLLOW_IF_PRESENT';
    case OutputSdt.sdtManual:
      return 'SDT_MANUAL';
    case OutputSdt.sdtNone:
      return 'SDT_NONE';
  }
}