Package com.microstrategy.web.objects
Interface WebGridRows
- 
 public interface WebGridRowsThis interface provides collection type methods to traverse and obtainWebRowobjects in the report.- Since:
- MicroStrategy Web 7.3.1 or earlier
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumerationelements()WebRowget(int index)Returns the WebRow at the given index (starting from 0).booleanisEmpty()intsize()
 
- 
- 
- 
Method Detail- 
sizeint size() - Returns:
- the number of WebRow objects in this collection.
 
 - 
getWebRow get(int index) Returns the WebRow at the given index (starting from 0).- Parameters:
- index- index of the element to return.
- Returns:
- the element at the specified position.
- Throws:
- java.lang.IndexOutOfBoundsException- if index is out of range- (index < 0 || index >= size()).
- See Also:
- WebRow
 
 - 
elementsjava.util.Enumeration elements() - Returns:
- an enumeration of WebRowobjects.
 
 - 
isEmptyboolean isEmpty() - Returns:
- whether size()==0.
 
 
- 
 
-