Package uk.gov.gchq.gaffer.data
Class GroupCounts
- java.lang.Object
-
- uk.gov.gchq.gaffer.data.GroupCounts
-
public class GroupCounts extends Object
Summary of element groups. If the limitHit flag is true then the counts will not be fully populated - they are simply the counts of the groups up to the point at which the limit was reached.
-
-
Constructor Summary
Constructors Constructor Description GroupCounts()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addEdgeGroup(String group)
void
addEntityGroup(String group)
Map<String,Integer>
getEdgeGroups()
Map<String,Integer>
getEntityGroups()
boolean
isLimitHit()
void
setEdgeGroups(Map<String,Integer> edgeGroups)
void
setEntityGroups(Map<String,Integer> entityGroups)
void
setLimitHit(boolean limitHit)
String
toString()
-