I want to create hashMap
private Map<Integer,specificObject> myMap;
myMap = new HashMap <Integer,SpecificObject>(initialCapacity);
is it possible that myMap capacity will remain the same for the entire program? even if we've reached the full capacity.