🎨 Replace reply comparator with Kotlin version
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Reply.java
1 /*
2  * Sone - Reply.java - Copyright Â© 2010–2020 David Roden
3  *
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.
8  *
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.
13  *
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/>.
16  */
17
18 package net.pterodactylus.sone.data;
19
20 import java.util.Comparator;
21
22 import com.google.common.base.Predicate;
23
24 /**
25  * Defines methods common for all replies.
26  *
27  * @param <T>
28  *            The type of the reply
29  */
30 public interface Reply<T extends Reply<T>> extends Identified {
31
32         /** Filter for replies with timestamps from the future. */
33         public static final Predicate<Reply<?>> FUTURE_REPLY_FILTER = new Predicate<Reply<?>>() {
34
35                 /**
36                  * {@inheritDoc}
37                  */
38                 @Override
39                 public boolean apply(Reply<?> reply) {
40                         return (reply != null) && (reply.getTime() <= System.currentTimeMillis());
41                 }
42
43         };
44
45         /**
46          * Returns the ID of the reply.
47          *
48          * @return The ID of the reply
49          */
50         public String getId();
51
52         /**
53          * Returns the Sone that posted this reply.
54          *
55          * @return The Sone that posted this reply
56          */
57         public Sone getSone();
58
59         /**
60          * Returns the time of the reply.
61          *
62          * @return The time of the reply (in milliseconds since Jan 1, 1970 UTC)
63          */
64         public long getTime();
65
66         /**
67          * Returns the text of the reply.
68          *
69          * @return The text of the reply
70          */
71         public String getText();
72
73         /**
74          * Returns whether this reply is known.
75          *
76          * @return {@code true} if this reply is known, {@code false} otherwise
77          */
78         public boolean isKnown();
79
80         /**
81          * Sets whether this reply is known.
82          *
83          * @param known
84          *            {@code true} if this reply is known, {@code false} otherwise
85          * @return This reply
86          */
87         public T setKnown(boolean known);
88
89 }