com.endeca.collections.util
Interface Converter<S,T>

Type Parameters:
S -
T -

public interface Converter<S,T>

This interface provides the blueprint for writing a class that converts objects of type S to objects of type T.


Method Summary
 T convert(S src)
          This method should take as input object type S, and return object type T.
 

Method Detail

convert

T convert(S src)
This method should take as input object type S, and return object type T.

Parameters:
src -
Returns:
T