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.internal is not part of the public API and may change without notice. This page is provided for reference only.


Properties

PropertyTypeAccessDescription
emptybooleanRead/Write

Methods

MethodReturnsDescription
size()intReturns the number of elements in this collection.
get(int index)TReturns the element at the specified index.
length()intReturns the number of elements.
isEmpty()booleanReturns 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)booleanTests whether this collection contains the specified element.

See Also