I have this code.
CommentModel lastUserComment = comments.iterator().next();
for (CommentModel comment : comments) {
if (comment.getCreationtime().after(lastUserComment.getCreationtime())) {
lastUserComment = comment;
}
}
I want to replace it using guava.
If getCreationtime() returned int I could to use something like this: How to get max() element from List in Guava
Are there in Guava tool for resolving my problem?