Class PartialArrayList<T extends Serializable>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<T>
de.cuioss.tools.collect.PartialArrayList<T>
Type Parameters:
T - at least Serializable
All Implemented Interfaces:
PartialCollection<T>, Serializable, Cloneable, Iterable<T>, Collection<T>, List<T>, RandomAccess

public class PartialArrayList<T extends Serializable> extends ArrayList<T> implements PartialCollection<T>

Overview

Default implementation of PartialCollection based on ArrayList.

Usage

See of(List, int)

See Also:
  • Constructor Details

    • PartialArrayList

      public PartialArrayList(Collection<T> list, boolean moreAvailable)
      Default constructor.
      Parameters:
      list - the list of entities to store.
      moreAvailable - the flag to store.
  • Method Details