Class SmallKeyList<T>

java.lang.Object
java.util.AbstractCollection<T>
java.util.AbstractList<T>
overit.geocall.sql.SmallKeyList<T>
All Implemented Interfaces:
Serializable, Iterable<T>, Collection<T>, List<T>, RandomAccess, SequencedCollection<T>

public class SmallKeyList<T> extends AbstractList<T> implements RandomAccess, Serializable
This class manages the creation of a small amount of key list
See Also:
  • Constructor Details

    • SmallKeyList

      public SmallKeyList(T[] oo)
      Main constructor of SmallKeyList
      Parameters:
      oo - The array of objects to add
    • SmallKeyList

      public SmallKeyList(Object primitiveArray)
      Main constructor of SmallKeyList
      Parameters:
      primitiveArray - The object to add
    • SmallKeyList

      public SmallKeyList(List<T> l)
      Main constructor of SmallKeyList
      Parameters:
      l - The List to add
    • SmallKeyList

      public SmallKeyList(Collection<T> c)
      Main constructor of SmallKeyList
      Parameters:
      c - The Collection to add
  • Method Details