Class LazyList<E>
- java.lang.Object
-
- org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
-
- org.apache.commons.collections4.list.AbstractListDecorator<E>
-
- org.apache.commons.collections4.list.AbstractSerializableListDecorator<E>
-
- org.apache.commons.collections4.list.LazyList<E>
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Iterable<E>,java.util.Collection<E>,java.util.List<E>
public class LazyList<E> extends AbstractSerializableListDecorator<E>
Decorates anotherListto create objects in the list on demand.When the
get(int)method is called with an index greater than the size of the list, the list will automatically grow in size and return a new object from the specified factory or transformer. The gaps will be filled by null. If a get method call encounters a null, it will be replaced with a new object from the factory. Thus this list is unsuitable for storing null objects.For instance:
Factory<Date> factory = new Factory<Date>() { public Date create() { return new Date(); } } List<Date> lazy = LazyList.decorate(new ArrayList<Date>(), factory); Date date = lazy.get(3);After the above code is executed,
datewill contain a newDateinstance. Furthermore, thatDateinstance is the fourth element in the list. The first, second, and third element are all set tonull.This class differs from
GrowthListbecause here growth occurs on get, whereGrowthListgrows on set and add. However, they could easily be used together by decorating twice.This class is Serializable from Commons Collections 3.1.
- Since:
- 3.0
- See Also:
GrowthList, Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Eget(int index)Decorate the get method to perform the lazy behaviour.static <E> LazyList<E>lazyList(java.util.List<E> list, Factory<? extends E> factory)Factory method to create a lazily instantiating list.static <E> LazyList<E>lazyList(java.util.List<E> list, Transformer<java.lang.Integer,? extends E> transformer)Transformer method to create a lazily instantiating list.java.util.List<E>subList(int fromIndex, int toIndex)-
Methods inherited from class org.apache.commons.collections4.list.AbstractListDecorator
add, addAll, equals, hashCode, indexOf, lastIndexOf, listIterator, listIterator, remove, set
-
-
-
-
Method Detail
-
lazyList
public static <E> LazyList<E> lazyList(java.util.List<E> list, Factory<? extends E> factory)
Factory method to create a lazily instantiating list.- Type Parameters:
E- the type of the elements in the list- Parameters:
list- the list to decorate, must not be nullfactory- the factory to use for creation, must not be null- Returns:
- a new lazy list
- Throws:
java.lang.NullPointerException- if list or factory is null- Since:
- 4.0
-
lazyList
public static <E> LazyList<E> lazyList(java.util.List<E> list, Transformer<java.lang.Integer,? extends E> transformer)
Transformer method to create a lazily instantiating list.- Type Parameters:
E- the type of the elements in the list- Parameters:
list- the list to decorate, must not be nulltransformer- the transformer to use for creation, must not be null- Returns:
- a new lazy list
- Throws:
java.lang.NullPointerException- if list or transformer is null- Since:
- 4.4
-
get
public E get(int index)
Decorate the get method to perform the lazy behaviour.If the requested index is greater than the current size, the list will grow to the new size and a new object will be returned from the factory or transformer. Indexes in-between the old size and the requested size are left with a placeholder that is replaced with a factory or transformer object when requested.
- Specified by:
getin interfacejava.util.List<E>- Overrides:
getin classAbstractListDecorator<E>- Parameters:
index- the index to retrieve- Returns:
- the element at the given index
-
subList
public java.util.List<E> subList(int fromIndex, int toIndex)
- Specified by:
subListin interfacejava.util.List<E>- Overrides:
subListin classAbstractListDecorator<E>
-
-