Class ArraySortedList<A>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<A>
eu.bandm.tools.ops.ArraySortedList<A>
All Implemented Interfaces:
SortedList<A>, Iterable<A>, Collection<A>, List<A>
Direct Known Subclasses:
ArraySortedEntryList

public class ArraySortedList<A> extends AbstractList<A> implements SortedList<A>
Implementation of a sorted list by an underlying array.
  • Constructor Details

    • ArraySortedList

      public ArraySortedList()
    • ArraySortedList

      public ArraySortedList(int capacity)
    • ArraySortedList

      public ArraySortedList(Comparator<? super A> comparator)
    • ArraySortedList

      public ArraySortedList(Comparator<? super A> comparator, int capacity)
    • ArraySortedList

      public ArraySortedList(List<? extends A> elems)
    • ArraySortedList

      public ArraySortedList(Comparator<? super A> comparator, List<? extends A> elems)
    • ArraySortedList

      public ArraySortedList(A... elems)
    • ArraySortedList

      public ArraySortedList(Comparator<? super A> comparator, A... elems)
  • Method Details