Class MapKey.MapUpdateOpBuilder

  • Enclosing class:
    MapKey

    public class MapKey.MapUpdateOpBuilder
    extends UpdateOp
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      MapKey.MapUpdateOpBuilder removeKey​(Key<?> key)
      Adds one more removed key to this map update and returns a reference to the same object to allow chaining of methods.
      MapKey.MapUpdateOpBuilder removeKeys​(Key<?>... keys)
      Adds more removed keys to this map update and returns a reference to the same object to allow chaining of methods.
      MapKey.MapUpdateOpBuilder removeKeys​(java.lang.Iterable<? extends Key<?>> keys)
      Adds more removed keys to this map update and returns a reference to the same object to allow chaining of methods.
      MapKey.MapUpdateOpBuilder update​(UpdateOp... keyUpdates)
      Adds more updates to this map update and returns a reference to the same object to allow chaining of methods.
      MapKey.MapUpdateOpBuilder update​(java.lang.Iterable<UpdateOp> keyUpdates)
      Adds more updates to this map update and returns a reference to the same object to allow chaining of methods.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • update

        public MapKey.MapUpdateOpBuilder update​(UpdateOp... keyUpdates)
        Adds more updates to this map update and returns a reference to the same object to allow chaining of methods.
      • update

        public MapKey.MapUpdateOpBuilder update​(java.lang.Iterable<UpdateOp> keyUpdates)
        Adds more updates to this map update and returns a reference to the same object to allow chaining of methods.
      • removeKey

        public MapKey.MapUpdateOpBuilder removeKey​(Key<?> key)
        Adds one more removed key to this map update and returns a reference to the same object to allow chaining of methods.
      • removeKeys

        public MapKey.MapUpdateOpBuilder removeKeys​(Key<?>... keys)
        Adds more removed keys to this map update and returns a reference to the same object to allow chaining of methods.
      • removeKeys

        public MapKey.MapUpdateOpBuilder removeKeys​(java.lang.Iterable<? extends Key<?>> keys)
        Adds more removed keys to this map update and returns a reference to the same object to allow chaining of methods.