Skip to content

Instantly share code, notes, and snippets.

@mbarrben
Created October 28, 2014 11:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbarrben/b08837b173d60bcc9fd6 to your computer and use it in GitHub Desktop.
Save mbarrben/b08837b173d60bcc9fd6 to your computer and use it in GitHub Desktop.
Mapper
/**Transforms an input object into an output object */
public interface Mapper<OUT, IN> {
OUT map(IN in);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment