Interface IContainer.Modifiable<E>

All Superinterfaces:
IContainer<E>, INotifier
All Known Implementing Classes:
ListContainer, ModifiableContainer, PersistableContainer, SetContainer
Enclosing interface:
IContainer<E>

public static interface IContainer.Modifiable<E> extends IContainer<E>
A container with additional methods to add or remove elements.
Since:
2.0
Author:
Eike Stepper
  • Method Details

    • addElement

      boolean addElement(E element)
    • addAllElements

      boolean addAllElements(Collection<E> elements)
    • removeElement

      boolean removeElement(E element)
    • removeAllElements

      boolean removeAllElements(Collection<E> elements)