The AbstractCollection
class serves as a base class for collections of nodes or other items. It is designed to handle collections with common behaviors such as indexing, iteration, and the ability to manipulate elements within the collection. The AbstractCollection
is typically extended by more specific collection types, such as NodeList, Attributes and ClassList.
Declaration
abstract class AbstractCollection extends CollectionInterface