Uses of Interface
org.onehippo.cms7.crisp.api.resource.ResourceCollection
Packages that use ResourceCollection
Package
Description
This package provides Resource APIs of Hippo Addon CRISP module.
-
Uses of ResourceCollection in org.onehippo.cms7.crisp.api.resource
Fields in org.onehippo.cms7.crisp.api.resource declared as ResourceCollectionModifier and TypeFieldDescriptionstatic final ResourceCollection
ResourceCollection.EMPTY
EmptyResourceCollection
object.Methods in org.onehippo.cms7.crisp.api.resource that return ResourceCollectionModifier 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.Methods in org.onehippo.cms7.crisp.api.resource with parameters of type ResourceCollectionModifier 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.