Package org.zkoss.zul.ext
Interface GroupingInfo
-
- All Known Implementing Classes:
GroupsListModel.GroupDataInfo
public interface GroupingInfo
Represents the runtime information of each iteration caused byGroupsModel
- Since:
- 6.0.0
- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getGroupIndex()
Returns the index of this groupint
getOffset()
The offset of an element in a group.int
getType()
The type of the data.boolean
isOpen()
Whether the group is opened.
-
-
-
Field Detail
-
GROUP
static final byte GROUP
Indicates the data is a group (a.k.a., the head of the group).- See Also:
- Constant Field Values
-
GROUPFOOT
static final byte GROUPFOOT
Indicates the data is a group foot.- See Also:
- Constant Field Values
-
ELEMENT
static final byte ELEMENT
Indicates the data is an element of a group.- See Also:
- Constant Field Values
-
-