Uses of Interface
org.meteoinfo.jts.util.CollectionUtil.Function
-
Packages that use CollectionUtil.Function Package Description org.meteoinfo.jts.util -
-
Uses of CollectionUtil.Function in org.meteoinfo.jts.util
Methods in org.meteoinfo.jts.util with parameters of type CollectionUtil.Function Modifier and Type Method Description static voidCollectionUtil. apply(java.util.Collection coll, CollectionUtil.Function func)Executes a function on each item in a Collection but does not accumulate the resultstatic java.util.ListCollectionUtil. select(java.util.Collection collection, CollectionUtil.Function func)Executes aCollectionUtil.Functionon each item in a Collection and collects all the entries for which the result of the function is equal toBooleantrue.static java.util.ListCollectionUtil. transform(java.util.Collection coll, CollectionUtil.Function func)Executes a function on each item in aCollectionand returns the results in a newList
-