All Implemented Interfaces:
ItemList, ItemListBase<Item>, Serializable, Cloneable, Iterable<Item>, Collection<Item>, List<Item>, RandomAccess

public class ItemListImpl extends ItemListBaseImpl<Item> implements ItemList
This class derives from the ItemListBaseImpl. It does not provide any functionality on top of the ItemListBaseImpl. Instead It uses Item as list entry type, and can not by typed with a different type using generics. So it represents a List of Item objects. This class can be used to maintain a collection of such objects.
See Also:
  • Constructor Details

    • ItemListImpl

      public ItemListImpl()
  • Method Details

    • toItemArray

      public Item[] toItemArray()
      Description copied from interface: ItemList
      A bridge method between Collection and Array. The same as calling myList.toArray(new Item[myList.size()])
      Specified by:
      toItemArray in interface ItemList
      Returns:
      ItemList as typed Array