Package com.microstrategy.web.objects
Interface WebGraphLabels
-
public interface WebGraphLabelsThe WebGraphLabels provides an interface for a collection ofWebGraphLabelobjects.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumerationelements()Returns anEnumerationofWebGraphLabelobjectsWebGraphLabelget(int index)Returns aWebGraphLabelfor the given index.booleanisEmpty()Returns whether the collection is emptyintsize()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 aWebGraphLabelfor the given index.- Parameters:
index-
-
elements
java.util.Enumeration elements()
Returns anEnumerationofWebGraphLabelobjects
-
-