Skip to content

Instantly share code, notes, and snippets.

@pschichtel
Created June 23, 2012 22:07
Show Gist options
  • Save pschichtel/2980248 to your computer and use it in GitHub Desktop.
Save pschichtel/2980248 to your computer and use it in GitHub Desktop.
Converter
public interface Converter<T>
{
public Object from(T object);
public T to(Object object);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment