Class ArrayMap.Entry<K,V>

java.lang.Object
tools.ArrayMap.Entry<K,V>
Type Parameters:
K - The type of the key.
V - The type of the value.
All Implemented Interfaces:
Serializable, Map.Entry<K,V>
Enclosing class:
ArrayMap<K,V>

public static class ArrayMap.Entry<K,V> extends Object implements Map.Entry<K,V>, Serializable
Provides a strongly typed mapping of a key to a value.
Since:
Revision 589
See Also:
  • Field Details

    • serialVersionUID

      public static final long serialVersionUID
      See Also:
    • key

      protected K key
    • value

      protected V value
  • Constructor Details

    • Entry

      public Entry(K key, V value)
      Class constructor
      Parameters:
      key - Name of the key
      value - The value.
  • Method Details