Uses of Class
org.apache.commons.collections4.list.TransformedList
-
Packages that use TransformedList Package Description org.apache.commons.collections4.list This package contains implementations of theListinterface. -
-
Uses of TransformedList in org.apache.commons.collections4.list
Methods in org.apache.commons.collections4.list that return TransformedList Modifier and Type Method Description static <E> TransformedList<E>TransformedList. transformedList(java.util.List<E> list, Transformer<? super E,? extends E> transformer)Factory method to create a transforming list that will transform existing contents of the specified list.static <E> TransformedList<E>TransformedList. transformingList(java.util.List<E> list, Transformer<? super E,? extends E> transformer)Factory method to create a transforming list.
-