Package com.microstrategy.web.objects
Interface WebGraphLabels
-
public interface WebGraphLabels
The WebGraphLabels provides an interface for a collection ofWebGraphLabel
objects.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumeration
elements()
Returns anEnumeration
ofWebGraphLabel
objectsWebGraphLabel
get(int index)
Returns aWebGraphLabel
for the given index.boolean
isEmpty()
Returns whether the collection is emptyint
size()
Returns the size of the collection
-
-
-
Method Detail
-
size
int size()
Returns the size of the collection
-
isEmpty
boolean isEmpty()
Returns whether the collection is empty
-
get
WebGraphLabel get(int index)
Returns aWebGraphLabel
for the given index.- Parameters:
index
-
-
elements
java.util.Enumeration elements()
Returns anEnumeration
ofWebGraphLabel
objects
-
-