Interface EntryProcessor.Entry<K,V>

Type Parameters:
K - the logical key type
V - the logical value type
All Superinterfaces:
Serializable
Enclosing interface:
EntryProcessor<K,V,R>

public static interface EntryProcessor.Entry<K,V> extends Serializable
Mutable entry view presented to a processor.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    key()
     
    void
     
    void
    setValue(@Nullable V value)
     
    @Nullable V
     
  • Method Details

    • key

      K key()
    • value

      @Nullable V value()
    • setValue

      void setValue(@Nullable V value)
    • remove

      void remove()
    • exists

      boolean exists()