Interface ListWA<T>

  • All Superinterfaces:
    SetWA<T>
    All Known Subinterfaces:
    Sender<T>, Sui<T>, Ui
    All Known Implementing Classes:
    Dsui, Pdsui, PerspectiveXmlRenderer, SenderStub, UiRouter

    public interface ListWA<T>
    extends SetWA<T>
    TODOC What is the difference between append and add? -> add set specific and the method does not guarrenties that is added to the of the list. Append adds to end.
    • Method Detail

      • append

        <R extends ListWA<T>> R append​(T arg)
      • add

        default <R extends SetWA<T>> R add​(T arg)
        Description copied from interface: SetWA
        TODO Create method which adds one if not present and otherwise throws exception.
        Specified by:
        add in interface SetWA<T>
      • appendAll

        default <R extends ListWA<T>> R appendAll​(T... arg)