X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=c6c610184408a46f4e8b9afb35be6b722fa03b14;hb=df0abbdc635a8b927474515bb100882e6d850336;hp=c23426a859cd29f44a57bee92e8537c478f66662;hpb=99888ce13cc17d49f5e217ab6f2c9ad5ef168792;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Reply.java b/src/main/java/net/pterodactylus/sone/data/Reply.java index c23426a..c6c6101 100644 --- a/src/main/java/net/pterodactylus/sone/data/Reply.java +++ b/src/main/java/net/pterodactylus/sone/data/Reply.java @@ -20,6 +20,7 @@ package net.pterodactylus.sone.data; import java.util.Comparator; import com.google.common.base.Predicate; +import com.google.common.primitives.Longs; /** * Defines methods common for all replies. @@ -31,29 +32,19 @@ import com.google.common.base.Predicate; public interface Reply> { /** Comparator that sorts replies ascending by time. */ - public static final Comparator> TIME_COMPARATOR = new Comparator>() { - - /** - * {@inheritDoc} - */ + Comparator> TIME_COMPARATOR = new Comparator>() { @Override public int compare(Reply leftReply, Reply rightReply) { - return (int) Math.max(Integer.MIN_VALUE, Math.min(Integer.MAX_VALUE, leftReply.getTime() - rightReply.getTime())); + return Longs.compare(leftReply.getTime(), rightReply.getTime()); } - }; /** Filter for replies with timestamps from the future. */ - public static final Predicate> FUTURE_REPLY_FILTER = new Predicate>() { - - /** - * {@inheritDoc} - */ + Predicate> FUTURE_REPLY_FILTER = new Predicate>() { @Override public boolean apply(Reply reply) { - return reply.getTime() <= System.currentTimeMillis(); + return (reply != null) && (reply.getTime() <= System.currentTimeMillis()); } - }; /** @@ -61,70 +52,44 @@ public interface Reply> { * * @return The ID of the reply */ - public String getId(); + String getId(); + String getInternalId(); /** * Returns the Sone that posted this reply. * * @return The Sone that posted this reply */ - public Sone getSone(); - - /** - * Sets the Sone that posted this reply. - * - * @param sone - * The Sone that posted this reply - * @return This reply - */ - public T setSone(Sone sone); + Sone getSone(); /** * Returns the time of the reply. * * @return The time of the reply (in milliseconds since Jan 1, 1970 UTC) */ - public long getTime(); - - /** - * Sets the time of the reply. - * - * @param time - * The time of the reply (in milliseconds since Jan 1, 1970 UTC) - * @return This reply - */ - public T setTime(long time); + long getTime(); /** * Returns the text of the reply. * * @return The text of the reply */ - public String getText(); - - /** - * Sets the text of the reply. - * - * @param text - * The text of the reply - * @return This reply - */ - public T setText(String text); + String getText(); /** * Returns whether this reply is known. * * @return {@code true} if this reply is known, {@code false} otherwise */ - public boolean isKnown(); + boolean isKnown(); /** * Sets whether this reply is known. * * @param known - * {@code true} if this reply is known, {@code false} otherwise + * {@code true} if this reply is known, {@code false} otherwise * @return This reply */ - public T setKnown(boolean known); + T setKnown(boolean known); }