Package com.microstrategy.web.objects
Interface WebSubTitles
- 
 public interface WebSubTitlesSubtitles may be optionally associated with aWebTitle.- Since:
- MicroStrategy Web 7.3.1 or earlier
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumerationelements()WebSubTitleget(int index)Returns the WebSubTitle at the given index.booleanisEmpty()intsize()
 
- 
- 
- 
Method Detail- 
sizeint size() - Returns:
- the number of WebSubTitle objects in this collection.
 
 - 
getWebSubTitle get(int index) Returns the WebSubTitle 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:
- WebSubTitle
 
 - 
elementsjava.util.Enumeration elements() - Returns:
- enumeration containing the WebSubTitle objects in this collection.
 
 - 
isEmptyboolean isEmpty() - Returns:
- whether size()==0.
 
 
- 
 
-