Uses of Interface
org.onehippo.cms7.crisp.api.resource.ResourceCollection
Package
Description
This package provides Resource APIs of Hippo Addon CRISP module.
-
Uses of ResourceCollection in org.onehippo.cms7.crisp.api.resource
Modifier and TypeFieldDescriptionstatic final ResourceCollection
ResourceCollection.EMPTY
EmptyResourceCollection
object.Modifier and TypeMethodDescriptionAbstractResource.getChildren()
Return aResourceCollection
of child resource representations.Resource.getChildren()
Return aResourceCollection
of child resource representations.Resource.getChildren
(long offset, long limit) Return aResourceCollection
of child resource representations fromoffset
index withlimit
count at max.Modifier and TypeMethodDescription<T> Collection<T>
AbstractResourceBeanMapper.mapCollection
(ResourceCollection resourceCollection, Class<T> beanType) <T> Collection<T>
AbstractResourceBeanMapper.mapCollection
(ResourceCollection resourceCollection, Class<T> beanType, int offset, int limit) <T> void
AbstractResourceBeanMapper.mapCollection
(ResourceCollection resourceCollection, Class<T> beanType, Collection<T> targetBeanCollection) <T> void
AbstractResourceBeanMapper.mapCollection
(ResourceCollection resourceCollection, Class<T> beanType, Collection<T> targetBeanCollection, int offset, int length) <T> Collection<T>
ResourceBeanMapper.mapCollection
(ResourceCollection resourceCollection, Class<T> beanType) Map the child resources of theResourceCollection
to a new collection ofbeanType
to return.<T> Collection<T>
ResourceBeanMapper.mapCollection
(ResourceCollection resourceCollection, Class<T> beanType, int offset, int limit) Map the child resources of theResourceCollection
to a new collection ofbeanType
to return.<T> void
ResourceBeanMapper.mapCollection
(ResourceCollection resourceCollection, Class<T> beanType, Collection<T> targetBeanCollection) Map the child resources of theResourceCollection
and push them to the giventargetBeanCollection
ofbeanType
.<T> void
ResourceBeanMapper.mapCollection
(ResourceCollection resourceCollection, Class<T> beanType, Collection<T> targetBeanCollection, int offset, int limit) Map the child resources of theResourceCollection
and push them to the giventargetBeanCollection
ofbeanType
from theoffset
index up tolimit
size at max.