Class SetKey<T>


  • public class SetKey<T>
    extends Key<java.util.List<T>>
    • Method Detail

      • add

        @CheckReturnValue
        public final eu.antidotedb.client.UpdateOpDefaultImpl add​(T value)
        Creates an update operation which adds a value to the set.

        Use the methods on Bucket to execute the update.

      • addAll

        @SafeVarargs
        @CheckReturnValue
        public final eu.antidotedb.client.UpdateOpDefaultImpl addAll​(T... values)
        Creates an update operation which adds values to the set.

        Use the methods on Bucket to execute the update.

      • addAll

        @CheckReturnValue
        public eu.antidotedb.client.UpdateOpDefaultImpl addAll​(java.lang.Iterable<? extends T> values)
        Creates an update operation which adds values to the set.

        Use the methods on Bucket to execute the update.

      • remove

        @CheckReturnValue
        public final eu.antidotedb.client.UpdateOpDefaultImpl remove​(T value)
        Creates an update operation which removes a value from the set.

        Use the methods on Bucket to execute the update.

      • removeAll

        @SafeVarargs
        @CheckReturnValue
        public final eu.antidotedb.client.UpdateOpDefaultImpl removeAll​(T... values)
        Creates an update operation which removes values from the set.

        Use the methods on Bucket to execute the update.

      • removeAll

        @CheckReturnValue
        public eu.antidotedb.client.UpdateOpDefaultImpl removeAll​(java.lang.Iterable<? extends T> values)
        Creates an update operation which removes values from the set.

        Use the methods on Bucket to execute the update.