* @param <T> links the supplied class to the curried translate to ensure that the latter returns the former
* @param destinationClass a class representing the type to which translation should be performed
* @return a 'curried' translate instance
*/
public static <T> Translate<T> to( Class<T> destinationClass ) {
return new Translate<T>( new Configuration(), destinationClass );
}