Package com.microstrategy.web.objects
Interface WebRow
- 
 public interface WebRowReport grids are typically laid out in rows of data, which is what WebRow represents: a collection of WebRowValue objects.- Since:
- MicroStrategy Web 7.3.1 or earlier
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumerationelements()WebRowValueget(int index)Returns the WebRowValue at the given index.WebHeadersgetHeaderElements()intgetOrdinal()booleanisEmpty()booleanisMarkedForTransaction()Return whether this row is currently marked for a transaction operationintsize()
 
- 
- 
- 
Method Detail- 
getHeaderElementsWebHeaders getHeaderElements() - Returns:
- the associated WebHeadersdescribing this row.
 
 - 
sizeint size() - Returns:
- the number of WebRowValue objects in this row.
 
 - 
getWebRowValue get(int index) Returns the WebRowValue at the given index.- 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:
- WebRowValue
 
 - 
elementsjava.util.Enumeration elements() - Returns:
- the enumeration of WebRowValueobjects in this row.
 
 - 
isEmptyboolean isEmpty() - Returns:
- whether size()==0.
 
 - 
getOrdinalint getOrdinal() - Returns:
- the position of this WebRow (starting from 1).
 
 - 
isMarkedForTransactionboolean isMarkedForTransaction() Return whether this row is currently marked for a transaction operation- Returns:
- boolean specifying whether this row is marked
 
 
- 
 
-