Interface GroupByItem
public interface GroupByItem
Represents a grouping property.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetPath()
Gets the path.Gets the rollup.boolean
Whether a nested rollup clause contains the special value '$all'.
-
Method Details
-
getPath
List<UriResource> getPath()Gets the path.- Returns:
- a (potentially empty) list of path segments (and never
null
)
-
isRollupAll
boolean isRollupAll()Whether a nested rollup clause contains the special value '$all'.- Returns:
true
if '$all' has been given in rollup,false
otherwise
-
getRollup
List<GroupByItem> getRollup()Gets the rollup.- Returns:
- a (potentially empty) list of grouping items (and never
null
)
-