No Lambda, Predicate, Interface. Just a regular class with a regular getter. For example:
public int getWeight(){return weight;}
public int convertToLbs(int weight){some code here ...}
someObject.convertToLbs(someObject.getWeight())//valid???
Thanks