Package jodd.util

Class MapEntry<K,V>

java.lang.Object
jodd.util.MapEntry<K,V>
All Implemented Interfaces:
Map.Entry<K,V>

public class MapEntry<K,V> extends Object implements Map.Entry<K,V>
Default Map.Entry implementation. Both key and the value can be modified.
  • Field Details

    • key

      private K key
    • value

      private V value
  • Constructor Details

    • MapEntry

      public MapEntry(K key, V value)
  • Method Details