Interface EntryOperation<R,K,V>

All Superinterfaces:
Operation<R>

public interface EntryOperation<R,K,V> extends Operation<R>
  • Method Details

    • with

      R with()
    • without

      R without()
    • get

      V get()
    • has

      boolean has()
    • key

      K key()
    • val

      V val()
    • builder

      static <R, K, V> EntryOperation.Builder<R,K,V> builder()
    • ofMapEntry

      static <R, K, V> EntryOperation<R,K,V> ofMapEntry(R ret, Map<K,V> map, K k, V v)
    • ofListEntry

      static <R, V> EntryOperation<R,V,V> ofListEntry(R ret, List<V> list, V val)