Interface AutoPopulatingList.ElementFactory<E>
- Type Parameters:
- E- the element type
- Enclosing class:
- AutoPopulatingList<E>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Factory interface for creating elements for an index-based access
 data structure such as a 
List.- Since:
- 2.0
- Author:
- Rob Harrop, Juergen Hoeller
- 
Method SummaryModifier and TypeMethodDescriptioncreateElement(int index) Create the element for the supplied index.
- 
Method Details- 
createElementCreate the element for the supplied index.- Returns:
- the element object
- Throws:
- AutoPopulatingList.ElementInstantiationException- if the instantiation process failed (any exception thrown by a target constructor should be propagated as-is)
 
 
-