com.microstrategy.web.objects.WebMDXCatalog |
The WebMDXCatalog interface represents a catalog of a MDX source. A catalog
is identified uniquely by its name and the DBRole of its source. It contains
a collection of WebMDXCube
objects.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract WebMDXCube |
get(int i)
Returns the
WebMDXCube object in the child collection at the given index. | ||||||||||
abstract WebDisplayUnits |
getChildUnits()
Returns a
WebDisplayUnits collection which can be used to iterate through
the cubes that are contained within the catalog. | ||||||||||
abstract String |
getDisplayName()
Returns the display name of the catalog - this is the name that is meant for display purposes, but cannot
be used for identification purposes.
| ||||||||||
abstract String |
getName()
Returns the name of the catalog.
| ||||||||||
abstract WebMDXDisplayUnit |
getParent()
Returns the parent
WebMDXDisplayUnit of this object. | ||||||||||
abstract int |
size()
Returns the number of cubes in the catalog.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Returns the WebMDXCube
object in the child collection at the given index.
WebMDXCube
object in the child collection at the given index.WebObjectsException | Thrown if an error occurs when retrieving the children. |
---|
Returns a WebDisplayUnits
collection which can be used to iterate through
the cubes that are contained within the catalog. The objects returned from here
will be castable to both WebMDXDisplayUnit
and WebMDXCube
.
WebDisplayUnits
collection containing the cubes of the catalog.WebObjectsException | Thrown if an error occurs when retrieving the children. |
---|
Returns the display name of the catalog - this is the name that is meant for display purposes, but cannot be used for identification purposes.
Returns the name of the catalog. This is also known as the technical name. This name will generally be unsuitable for display purposes, but it is the main thing used to identify the catalog.
Returns the parent WebMDXDisplayUnit
of this object. This will
generally be castable into a WebMDXSource
.
WebMDXDisplayUnit
.
Returns the number of cubes in the catalog.
WebObjectsException | Thrown if an error occurs when retrieving the children. |
---|