2 * Sone - Reply.java - Copyright © 2010–2013 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.data;
20 import java.util.Comparator;
22 import com.google.common.base.Optional;
23 import com.google.common.base.Predicate;
26 * Defines methods common for all replies.
29 * The type of the reply
30 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
32 public interface Reply<T extends Reply<T>> extends Identified {
34 /** Comparator that sorts replies ascending by time. */
35 public static final Comparator<? super Reply<?>> TIME_COMPARATOR = new Comparator<Reply<?>>() {
41 public int compare(Reply<?> leftReply, Reply<?> rightReply) {
42 return (int) Math.max(Integer.MIN_VALUE, Math.min(Integer.MAX_VALUE, leftReply.getTime() - rightReply.getTime()));
47 /** Filter for replies with timestamps from the future. */
48 public static final Predicate<Reply<?>> FUTURE_REPLY_FILTER = new Predicate<Reply<?>>() {
54 public boolean apply(Reply<?> reply) {
55 return (reply == null) ? false : reply.getTime() <= System.currentTimeMillis();
61 * Returns the ID of the reply.
63 * @return The ID of the reply
65 public String getId();
68 * Returns the Sone that posted this reply.
70 * @return The Sone that posted this reply
72 public Sone getSone();
75 * Returns the time of the reply.
77 * @return The time of the reply (in milliseconds since Jan 1, 1970 UTC)
79 public long getTime();
82 * Returns the text of the reply.
84 * @return The text of the reply
86 public String getText();
89 * Returns whether this reply is known.
91 * @return {@code true} if this reply is known, {@code false} otherwise
93 public boolean isKnown();
97 interface Modifier<T> {
99 Modifier<T> setKnown();
100 T update(Optional<ReplyUpdated<T>> replyUpdated);
102 interface ReplyUpdated<T> {
104 void replyUpdated(T reply);