typeNames constant

Map<int, String> const typeNames

Map of Varbind type integer values to human-readable names

Implementation

static const Map<int, String> typeNames = <int, String>{
  BOOLEAN: 'Boolean',
  INTEGER: 'Integer',
  OCTET_STRING: 'OctetString',
  NULL: 'Null',
  OID: 'OID',
  IP_ADDRESS: 'IpAddress',
  COUNTER: 'Counter32',
  GAUGE: 'Gauge32',
  TIME_TICKS: 'TimeTicks',
  OPAQUE: 'Opaque',
  COUNTER_64: 'Counter64',
  NO_SUCH_OBJECT: 'NoSuchObject',
  NO_SUCH_INSTANCE: 'NoSuchInstance',
  END_OF_MIB_VIEW: 'EndOfMibView',
};