Class MapEntrySetStore.EntryImpl<K,V>

java.lang.Object
org.datanucleus.store.rdbms.scostore.MapEntrySetStore.EntryImpl<K,V>
All Implemented Interfaces:
Map.Entry<K,V>
Enclosing class:
MapEntrySetStore<K,V>

private static class MapEntrySetStore.EntryImpl<K,V> extends Object implements Map.Entry<K,V>
Inner class representing the entry in the map.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final K
     
    private final org.datanucleus.store.types.scostore.MapStore<K,V>
     
    private final org.datanucleus.state.DNStateManager
     
    private final V
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    EntryImpl(org.datanucleus.state.DNStateManager sm, K key, V value, org.datanucleus.store.types.scostore.MapStore<K,V> mapStore)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
     
     
    int
     
    setValue(V value)
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • ownerSM

      private final org.datanucleus.state.DNStateManager ownerSM
    • key

      private final K key
    • value

      private final V value
    • mapStore

      private final org.datanucleus.store.types.scostore.MapStore<K,V> mapStore
  • Constructor Details

    • EntryImpl

      public EntryImpl(org.datanucleus.state.DNStateManager sm, K key, V value, org.datanucleus.store.types.scostore.MapStore<K,V> mapStore)
  • Method Details