Loadfactor

Loadfactor indicates how full the hastable is where it's used to decide whether the hashtable need to increase the size.

Rehash

if the size/capacity is greater than or equal the loadfactor, then the Map need to rehashs, where the capacity of the Map double and the element relocate(rehash);

more Info