Skip to content

Instantly share code, notes, and snippets.

@mmaravich
Created October 22, 2014 09:10
Show Gist options
  • Save mmaravich/74d587b714d1da2294db to your computer and use it in GitHub Desktop.
Save mmaravich/74d587b714d1da2294db to your computer and use it in GitHub Desktop.
package org.springframework.core.convert.converter;
public interface Converter<S, T> {
T convert(S source);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment