Uses of Interface
org.glassfish.gmbal.generic.UnaryFunction

Packages that use UnaryFunction
org.glassfish.gmbal.generic   
 

Uses of UnaryFunction in org.glassfish.gmbal.generic
 

Subinterfaces of UnaryFunction in org.glassfish.gmbal.generic
static interface Graph.Finder<E>
          A Finder finds the immediate successors of an element of the graph.
 

Methods in org.glassfish.gmbal.generic that return UnaryFunction
static
<A,R> UnaryFunction<A,R>
Algorithms.mapToFunction(Map<A,R> map)
           
 

Methods in org.glassfish.gmbal.generic with parameters of type UnaryFunction
static
<S,T> List<T>
Algorithms.flatten(List<S> list, UnaryFunction<S,List<T>> map)
          Flatten the results of applying map to list into a list of T.
static
<A,R> void
Algorithms.map(Collection<A> arg, Collection<R> result, UnaryFunction<A,R> func)
           
static
<A,R> List<R>
Algorithms.map(List<A> arg, UnaryFunction<A,R> func)
           
static
<K,A,R> Map<K,R>
Algorithms.map(Map<K,A> arg, UnaryFunction<A,R> func)
           
 



Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.