Package org.nuxeo.ecm.core.api.quota
Interface QuotaStats
- All Known Subinterfaces:
QuotaStatsNonFolderishCount
,QuotaStatsSize
- All Known Implementing Classes:
QuotaStatsNonFolderishCountAdapter
public interface QuotaStats
Adapter giving statistics about a given
DocumentModel
.- Since:
- 5.5
- Author:
- Thomas Roger
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the cardinal value of all the children of the underlying document.long
Returns the intrinsic cardinal value of the underlying document.long
getTotal()
Returns the cardinal value of all the descendants of the underlying document. plus the value ofgetIntrinsic()
.
-
Method Details
-
getIntrinsic
long getIntrinsic()Returns the intrinsic cardinal value of the underlying document. -
getChildren
long getChildren()Returns the cardinal value of all the children of the underlying document. -
getTotal
long getTotal()Returns the cardinal value of all the descendants of the underlying document. plus the value ofgetIntrinsic()
.
-