Interface StrictCollection<E>

All Superinterfaces:
com.google.gwt.user.client.rpc.IsSerializable, Iterable<E>, IterableWithSize<E>, ReadOnlyStrictCollection<E>, Serializable
All Known Subinterfaces:
StrictList<E>
All Known Implementing Classes:
StrictHashSet, StrictListImpl

public interface StrictCollection<E> extends ReadOnlyStrictCollection<E>
Since:
3.9.0
  • Method Details

    • add

      boolean add(@NotNull E element)
    • remove

      boolean remove(@Nullable E element)
    • addAll

      boolean addAll(@NotNull Iterable<? extends E> elements)
    • removeAll

      boolean removeAll(@NotNull Iterable<? extends E> elements)
    • retainAll

      boolean retainAll(@NotNull Iterable<? extends E> elements)
    • clear

      void clear()