toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CommsProtocol.sip:
      return 'SIP';
    case CommsProtocol.sips:
      return 'SIPS';
    case CommsProtocol.h323:
      return 'H323';
  }
}