Package com.microstrategy.web.objects
Interface WebDocReportInstances
-
public interface WebDocReportInstances
This 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.Enumeration
elements()
Returns an enumeration for the collection ofWebReportInstance
objects stored in this object.WebReportInstance
get(int index)
Returns theWebReportInstance
object at a desired index.boolean
isEmpty()
Returns true if there are noWebReportInstance
objects in the collection.int
size()
Returns the size of the collection ofWebReportInstance
objects.
-
-
-
Method Detail
-
get
WebReportInstance get(int index) throws java.lang.ArrayIndexOutOfBoundsException
Returns theWebReportInstance
object at a desired index.- Parameters:
index
- index for the fetch.- Returns:
- The
WebReportInstance
object 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 noWebReportInstance
objects in the collection.- Returns:
- whether this object has an empty collection of
WebReportInstance
objects.
-
size
int size()
Returns the size of the collection ofWebReportInstance
objects.- Returns:
- The size of the collection.
-
elements
java.util.Enumeration elements()
Returns an enumeration for the collection ofWebReportInstance
objects stored in this object.- Returns:
- Enumeration of the
WebReportInstance
objects.
-
-