Class FluentArrayList<E>

    • Constructor Detail

      • FluentArrayList

        public FluentArrayList​(int initialCapacity)
      • FluentArrayList

        public FluentArrayList()
      • FluentArrayList

        public FluentArrayList​(E... elements)
      • FluentArrayList

        public FluentArrayList​(Collection<? extends E> c)
    • Method Detail

      • append

        public FluentArrayList<E> append​(E e)
        Fluent method to add the specified element to this list.
      • delete

        public FluentArrayList<E> delete​(Object o)
        Fluent method to remove the specified element from this list.
      • appendAll

        public FluentArrayList<E> appendAll​(Collection<? extends E> c)
        Fluent method to add the elements from the specified collection to this list.
      • appendAll

        public FluentArrayList<E> appendAll​(E... elements)
        Fluent method to add the elements to this list.