Java org.springframework.util AutoPopulatingList fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.util AutoPopulatingList fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.util AutoPopulatingList.

The text is from its open source code.

Subclass

org.springframework.util.AutoPopulatingList has subclasses.
Click this link to see all its subclasses.

Constructor

AutoPopulatingList(Class elementClass)
Creates a new AutoPopulatingList that is backed by a standard ArrayList and adds new instances of the supplied Class element Class to the backing List on demand.
AutoPopulatingList(ElementFactory elementFactory)
Creates a new AutoPopulatingList that is backed by a standard ArrayList and creates new elements on demand using the supplied ElementFactory .
AutoPopulatingList(List backingList, Class elementClass)
Creates a new AutoPopulatingList that is backed by the supplied List and adds new instances of the supplied Class element Class to the backing List on demand.
AutoPopulatingList(List backingList, ElementFactory elementFactory)
Creates a new AutoPopulatingList that is backed by the supplied List and creates new elements on demand using the supplied ElementFactory .

Method

Eget(int index)
Get the element at the supplied index, creating it if there is no element at that index.
Iteratoriterator()
Eremove(int index)
booleanremove(Object o)
intsize()