Package edu.uci.ics.jung.algorithms.util
Interface SettableTransformer<I,O>
- All Superinterfaces:
com.google.common.base.Function<I,,O> Function<I,O>
- All Known Implementing Classes:
MapSettableTransformer
public interface SettableTransformer<I,O>
extends com.google.common.base.Function<I,O>
An interface for classes that can set the value to be returned (from
transform())
when invoked on a given input.- Author:
- Joshua O'Madadhain
-
Method Summary
Methods inherited from interface com.google.common.base.Function
apply, equals
-
Method Details
-
set
Sets the value (output) to be returned by a call totransform(input)).- Parameters:
input- the value whose output value is being specifiedoutput- the output value forinput
-