Interface PageableObjectCollection
-
- All Superinterfaces:
ObjectCollection
- All Known Implementing Classes:
ObjectCollectionImpl
public interface PageableObjectCollection extends ObjectCollection
Object collection which supports paging of elements
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<TypedObject>
getElements(int offset, int count)
Returns list of elements starting from the offset.-
Methods inherited from interface de.hybris.platform.cockpit.model.collection.ObjectCollection
getDescription, getElements, getLabel, getLabel, getPK, getQualifier, getTotalCount, getType, getUser
-
-
-
-
Method Detail
-
getElements
java.util.List<TypedObject> getElements(int offset, int count)
Returns list of elements starting from the offset. Size is limited to count.- Parameters:
offset
- starting indexcount
- maximum count of elements to be fetched- Returns:
- list of elements according to given offset and count
-
-