Package com.microstrategy.web.objects
Interface WebDocReportInstances
-
public interface WebDocReportInstancesThis interface is used to hold the collection of report instances corresponding to a document instance. A document is a collection of reports. Thus, once a document has been successfully executed, one can obtain the WebDocReportInstances object usingWebDocumentInstance.getDocReportInstances()that corresponds to a collection of the individual report instances that make up the document instance.- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumerationelements()Returns an enumeration for the collection ofWebReportInstanceobjects stored in this object.WebReportInstanceget(int index)Returns theWebReportInstanceobject at a desired index.booleanisEmpty()Returns true if there are noWebReportInstanceobjects in the collection.intsize()Returns the size of the collection ofWebReportInstanceobjects.
-
-
-
Method Detail
-
get
WebReportInstance get(int index) throws java.lang.ArrayIndexOutOfBoundsException
Returns theWebReportInstanceobject at a desired index.- Parameters:
index- index for the fetch.- Returns:
- The
WebReportInstanceobject at the given index. - Throws:
java.lang.IndexOutOfBoundsException- if the index passed is negative or greater than the size of the collection.java.lang.ArrayIndexOutOfBoundsException
-
isEmpty
boolean isEmpty()
Returns true if there are noWebReportInstanceobjects in the collection.- Returns:
- whether this object has an empty collection of
WebReportInstanceobjects.
-
size
int size()
Returns the size of the collection ofWebReportInstanceobjects.- Returns:
- The size of the collection.
-
elements
java.util.Enumeration elements()
Returns an enumeration for the collection ofWebReportInstanceobjects stored in this object.- Returns:
- Enumeration of the
WebReportInstanceobjects.
-
-