toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Protocol.sftp:
      return 'SFTP';
    case Protocol.ftp:
      return 'FTP';
    case Protocol.ftps:
      return 'FTPS';
  }
}