BaseCollection — Aspose.Slides FOSS Java API Reference
BaseCollection — Internal base for every *Collection class. Inherits from: Iterable<T>.
Package: org.aspose.slides.foss.internal
Note: This is an internal implementation class. Do not import or use it directly — the package
org.aspose.slides.foss.internalis not part of the public API and may change without notice. This page is provided for reference only.
Properties
| Property | Type | Access | Description |
|---|---|---|---|
empty | boolean | Read/Write |
Methods
| Method | Returns | Description |
|---|---|---|
size() | int | Returns the number of elements in this collection. |
get(int index) | T | Returns the element at the specified index. |
length() | int | Returns the number of elements. |
isEmpty() | boolean | Returns true if this collection contains no elements. |
iterator() | Iterator<T> | Returns an iterator over the elements in this collection, in index order. |
hasNext() | boolean | |
next() | T | |
contains(Object item) | boolean | Tests whether this collection contains the specified element. |