I'm wondering if its possible to sort an EntrySet< K, V > based on some property of K using lambdaj ?
I dont think Lambdaj will let me I just wanted to confirm.
For example if I have a Map< A, B > where A has the following structure:
public class A{
private double published;
public double getPublished()
{
return double;
}
}
Am I able to sort an entryset, using lambdaj, on A.getPublished ?