Guest User

Untitled

a guest
Jun 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class CustomComparator implements Comparator<Photos_info>
  2. {
  3. @Override
  4. public int compare(Photos_info lhs, Photos_info rhs)
  5. {
  6. String dateTimeLHS = lhs.getdate() + lhs.gettime();
  7. String dateTimeRHS = rhs.getdate() + rhs.gettime();
  8. return dateTimeLHS.compareTo(dateTimeRHS);
  9. }
  10. }
Add Comment
Please, Sign In to add comment