Package com.microstrategy.web.objects.rw
Interface RWHyperlinks
-
- All Known Implementing Classes:
RWHyperlinksImpl
public interface RWHyperlinks- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RWHyperlinkadd()Adds a new hyperlink objectvoidclear()Removes all hyperlinks.java.util.Iteratorelements()RWHyperlinkget(int index)RWHyperlinkremove(int id)Removes a hyperlink.intsize()
-
-
-
Method Detail
-
size
int size()
- Returns:
- the number of hyperlink instances.
-
elements
java.util.Iterator elements()
- Returns:
Enumerationof hyperlink instances.
-
get
RWHyperlink get(int index)
- Parameters:
index- the index (starting from 0) of the hyperlink instance in the list- Returns:
- the hyperlink instance at the index
- Throws:
java.lang.IllegalArgumentException- thrown if there is no hyperlink at the given index.
-
add
RWHyperlink add()
Adds a new hyperlink object- Returns:
- a new hyperlink instance
-
remove
RWHyperlink remove(int id)
Removes a hyperlink.- Parameters:
id- identifier of hyperlink to remove.- Returns:
- the hyperlink instance removed.
-
clear
void clear()
Removes all hyperlinks. This is equivalent to invokingremove(int)for all hyperlink identifiers.
-
-