Class AbstractBitwiseTrie.BasicEntry<K,V>

java.lang.Object
org.apache.commons.collections4.trie.AbstractBitwiseTrie.BasicEntry<K,V>
All Implemented Interfaces:
Serializable, Map.Entry<K,V>
Direct Known Subclasses:
AbstractPatriciaTrie.TrieEntry
Enclosing class:
AbstractBitwiseTrie<K,V>

abstract static class AbstractBitwiseTrie.BasicEntry<K,V> extends Object implements Map.Entry<K,V>, Serializable
A basic implementation of Map.Entry.
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • key

      protected K key
    • value

      protected V value
  • Constructor Details

    • BasicEntry

      public BasicEntry(K key)
    • BasicEntry

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