Class QuickArrayList<E>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<E>
net.rotgruengelb.nixienaut.list.QuickArrayList<E>
All Implemented Interfaces:
Serializable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess

public class QuickArrayList<E> extends ArrayList<E>
This class is just a wrapper for ArrayList to make it easier to
add elements to the list in a chain. and then return the list itself.
See Also:
  • Constructor Details

    • QuickArrayList

      public QuickArrayList()
  • Method Details

    • qAdd

      public QuickArrayList<E> qAdd(E e)
      This class is just a wrapper for ArrayList to make it easier to
      add elements to the list in a chain. and then return the list itself.
      Parameters:
      e - The type of the elements in the list
      Returns:
      The list itself
      See Also: