public short getType_(byte[] icmpHeader) {
    byte[] type_ = BitOperator.parse(icmpHeader, IcmpHeader.TYPE__START_BIT, IcmpHeader.TYPE__END_BIT);
    short returnVar = ByteOperator.parseBytesshort(type_);
    return returnVar;
  }