Interface ItemList
- All Superinterfaces:
Collection<Item>,ItemListBase<Item>,Iterable<Item>,List<Item>
- All Known Implementing Classes:
ItemListImpl
Interface representing the back-end view of a list of
Item.
Basically this is just a convenience interface to type the
ItemListBase with Item as Item Type.-
Method Summary
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface de.hybris.platform.sap.sapordermgmtbol.transaction.item.businessobject.interf.ItemListBase
contains, contains, get, get, indexOf, indexOf, remove, removeMethods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
Method Details
-
toItemArray
Item[] toItemArray()A bridge method between Collection and Array. The same as callingmyList.toArray(new Item[myList.size()])- Returns:
- ItemList as typed Array
-