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 givenDocumentModel
.- Since:
- 5.5
- Author:
- Thomas Roger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getChildren()
Returns the cardinal value of all the children of the underlying document.long
getIntrinsic()
Returns the intrinsic cardinal value of the underlying document.long
getTotal()
Returns the cardinal value of all the descendants of the underlying document.
-
-
-
Method Detail
-
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()
.
-
-