Package com.microstrategy.web.objects
Interface WebMDXSources
- 
- All Superinterfaces:
 WebDisplayUnits
public interface WebMDXSources extends WebDisplayUnits
The WebMDXSources interface represents the list of MDX sources that are available in the given Intelligence Server project.- Since:
 - MicroStrategy Web 8.0.2
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumerationelements()Returns a java.util.Enumeration containing the objects in the collection.WebDisplayUnitget(int i)Returns the object at the given index in the collection.intsize()Returns the size of the collection.- 
Methods inherited from interface com.microstrategy.web.objects.WebDisplayUnits
add, add, add, addDetails, addX, applyVisitor, clear, containsKey, containsObject, entries, findAllItems, findItem, getBlockBegin, getBlockCount, getChildCount, getFolderCount, getHighlightedItems, getHighlightedItems, getItemByKey, getObjectCount, getPartialFolderCount, getSelectedCount, getSelectedItems, getSelectedItems, highlightUnits, highlightUnits, isEmpty, keyOf, keyOf, move, remove, remove, removeItemByKey, setBlockBegin, setBlockCount, setChildCount, setFolderCount, setSelected, sort 
 - 
 
 - 
 
- 
- 
Method Detail
- 
size
int size()
Returns the size of the collection.- Specified by:
 sizein interfaceWebDisplayUnits- Returns:
 - The size of the collection.
 
 
- 
elements
java.util.Enumeration elements()
Returns a java.util.Enumeration containing the objects in the collection.- Specified by:
 elementsin interfaceWebDisplayUnits- Returns:
 - A java.util.Enumeration containing the objects in the collection.
 
 
- 
get
WebDisplayUnit get(int i)
Returns the object at the given index in the collection.- Specified by:
 getin interfaceWebDisplayUnits- Parameters:
 i- The index of the object within the available display unit collection to return.- Returns:
 - The 
WebDisplayUnitobject at the given index. This object will be able to be cast into a WebMDXSource object. 
 
 - 
 
 -