Interface ItemList
-
- All Superinterfaces:
java.util.Collection<Item>,ItemListBase<Item>,java.lang.Iterable<Item>,java.util.List<Item>
- All Known Implementing Classes:
ItemListImpl
public interface ItemList extends ItemListBase<Item>
Interface representing the back-end view of a list ofItem. Basically this is just a convenience interface to type theItemListBasewithItemas Item Type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Item[]toItemArray()A bridge method between Collection and Array.-
Methods inherited from interface de.hybris.platform.sap.sapordermgmtbol.transaction.item.businessobject.interf.ItemListBase
contains, contains, get, get, indexOf, indexOf, remove, remove
-
Methods 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 Detail
-
toItemArray
Item[] toItemArray()
A bridge method between Collection and Array. The same as callingmyList.toArray(new Item[myList.size()])- Returns:
- ItemList as typed Array
-
-