How many pointers does java LinkedHashMap/Set Entry object have
In Java HashSet, When collision occurs, the HashMap stores multiple entries in the same bucket using a linked list.
Then in case of LinkedHashSet, LinkedHashMap will have a pointer to the next inserted element as well.
so does each entry object will have multiple pointers? one to point the elements in the same bucket and the other to point the next inserted element?