name static method

String name(
  1. int id
)

Implementation

static String name(int id) {
  switch (id) {
    case OpenSSHZLib:
      return 'zlib@openssh.com';
    case None:
      return 'none';
    default:
      return '';
  }
}