public interface IEssCollection extends IEssBaseObject
| Modifier and Type | Method and Description |
|---|---|
void |
add(IEssBaseObject object)
Adds an object to the collection.
|
int |
getCount()
Gets the count of objects in the collection.
|
IEssIterator |
getIterator()
Gets an iterator on the collection.
|
void |
remove(IEssBaseObject object)
Removes an object from the collection.
|
void add(IEssBaseObject object) throws com.essbase.api.base.EssException
object - The object to add.EssException - if an error occurs.void remove(IEssBaseObject object) throws com.essbase.api.base.EssException
object - The object to remove.EssException - if an error occurs.int getCount()
throws com.essbase.api.base.EssException
EssException - if an error occurs.IEssIterator getIterator() throws com.essbase.api.base.EssException
EssException - if an error occurs.