Class IntKeyMap.Entry<V>

  • Type Parameters:
    V - the value type
    Enclosing class:
    IntKeyMap<V>

    public static final class IntKeyMap.Entry<V>
    extends java.lang.Object
    A map entry.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int key  
      private V value  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private Entry​(int key, V value)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getKey()  
      V getValue()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • key

        private final int key
      • value

        private final V value
    • Constructor Detail

      • Entry

        private Entry​(int key,
                      V value)
    • Method Detail

      • getKey

        public int getKey()
      • getValue

        public V getValue()