Interface CollectionContext<T>

All Superinterfaces:
Destructible, Iterable<T>
All Known Subinterfaces:
CollectionProvider<T>
All Known Implementing Classes:
JoinedStringProperty

public interface CollectionContext<T> extends Iterable<T>, Destructible
  • Method Details

    • addAll

      default boolean addAll(T... items)
    • addAll

      default boolean addAll(Collection<T> items)
    • add

      boolean add(T item)
    • removeAll

      default boolean removeAll(T... items)
    • removeAll

      default boolean removeAll(Collection<T> items)
    • filter

      default boolean filter(Predicate<T> predicate)
    • remove

      boolean remove(T item)
    • destroy

      default void destroy()
      Description copied from interface: Destructible
      Destroys this object.
      Specified by:
      destroy in interface Destructible
    • clear

      void clear()
    • size

      int size()