Skip to content

Instantly share code, notes, and snippets.

@hertzsprung
Created June 22, 2012 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hertzsprung/2975427 to your computer and use it in GitHub Desktop.
Save hertzsprung/2975427 to your computer and use it in GitHub Desktop.
Method reference for an arbitrary object
interface Accessor<BEAN, PROPERTY> {
PROPERTY access(BEAN bean);
}
public static void main(String[] args) {
Address address = new Address("29 Acacia Road", "Tunbridge Wells");
Accessor<Address, String> accessor = Address::getCity;
System.out.println(accessor.access(address));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment