Java HashMap class has a static nested class Node
static class Node<K,V> implements Map.Entry<K,V>
I was trying to instantiate that Node class, but it seemed like I can't get it done as IDEA couldn't find any suitable option, as shown in screen shot below,
anyone here can enlignten me about this?
Can this static nested class be instantiated, if so, how?