Class ConverterCollections.ConverterMapEvent.ConverterMapEventEntry

java.lang.Object
com.tangosol.util.ConverterCollections.ConverterMapEvent.ConverterMapEventEntry
All Implemented Interfaces:
Map.Entry<K,V>
Direct Known Subclasses:
ConverterCollections.ConverterMapEvent.ConverterMapEventBinaryEntry
Enclosing class:
ConverterCollections.ConverterMapEvent<K,V>

protected class ConverterCollections.ConverterMapEvent.ConverterMapEventEntry extends Object implements Map.Entry<K,V>
ConverterMapEventEntry provides the Map Entry interface to the information encapsulated inside the ConverterMapEvent.
  • Field Details

    • m_fNewValue

      protected boolean m_fNewValue
      Determines whether this entry represents the old or new value.
  • Constructor Details

    • ConverterMapEventEntry

      public ConverterMapEventEntry(boolean fNewValue)
      Constructor.
      Parameters:
      fNewValue - specifies whether the value represented by this entry is the new or the old value
  • Method Details

    • getBinaryKey

      public Binary getBinaryKey()
      Return a raw binary key for this entry.
      Returns:
      a raw binary key for this entry
    • getBinaryValue

      public Binary getBinaryValue()
      Return a raw binary value for this entry.
      Returns:
      a raw binary value for this entry; null if the value does not exist
    • getKey

      public K getKey()
      Specified by:
      getKey in interface Map.Entry<K,V>
    • getValue

      public V getValue()
      Specified by:
      getValue in interface Map.Entry<K,V>
    • setValue

      public V setValue(V value)
      Specified by:
      setValue in interface Map.Entry<K,V>