toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case PortProtocol.http:
      return 'http';
    case PortProtocol.tcp:
      return 'tcp';
  }
}