public interface Mapper<T extends Object, V extends Object>
An interface to convert data of type T into V.
Use this to map custom data types to a type that can be handled by a Fetcher.
abstract V
map(T data, Options options)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract V map(T data, Options options)
Convert data into V. Return 'null' if this mapper cannot convert data.
data
options