Interface IGroupingItem
-
- All Superinterfaces:
com4j.Com4jObject
public interface IGroupingItem extends com4j.Com4jObject
A set of objects having the same value in a specific field.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
fieldName()
The name of the field by which the objects are grouped.java.lang.String
fieldValue()
Items belonging to the group have this value in the field.IList
groupList()
The list of sub-groups of this group.java.lang.Object
groupList(int index)
int
itemCount()
The number of objects in the group.IList
itemList()
The list of references to the members of the group.java.lang.Object
itemList(int index)
-
-
-
Method Detail
-
fieldName
java.lang.String fieldName()
The name of the field by which the objects are grouped.
Getter method for the COM property "FieldName"
- Returns:
- Returns a value of type java.lang.String
-
fieldValue
java.lang.String fieldValue()
Items belonging to the group have this value in the field.
Getter method for the COM property "FieldValue"
- Returns:
- Returns a value of type java.lang.String
-
itemCount
int itemCount()
The number of objects in the group.
Getter method for the COM property "ItemCount"
- Returns:
- Returns a value of type int
-
itemList
IList itemList()
The list of references to the members of the group.
Getter method for the COM property "ItemList"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
itemList
java.lang.Object itemList(int index)
-
groupList
IList groupList()
The list of sub-groups of this group.
Getter method for the COM property "GroupList"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
groupList
java.lang.Object groupList(int index)
-
-