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 RWHyperlink
add()
Adds a new hyperlink objectvoid
clear()
Removes all hyperlinks.java.util.Iterator
elements()
RWHyperlink
get(int index)
RWHyperlink
remove(int id)
Removes a hyperlink.int
size()
-
-
-
Method Detail
-
size
int size()
- Returns:
- the number of hyperlink instances.
-
elements
java.util.Iterator elements()
- Returns:
Enumeration
of 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.
-
-