]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/model/TransactionListItem.java
drop remnants of gradual transaction data loading, and last non-Room SQL
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / TransactionListItem.java
1 /*
2  * Copyright © 2021 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe 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 terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.model;
19
20 import androidx.annotation.NonNull;
21 import androidx.annotation.Nullable;
22
23 import net.ktnx.mobileledger.utils.SimpleDate;
24
25 import org.jetbrains.annotations.NotNull;
26
27 public class TransactionListItem {
28     private final Type type;
29     private SimpleDate date;
30     private boolean monthShown;
31     private LedgerTransaction transaction;
32     private String boldAccountName;
33     public TransactionListItem(@NotNull SimpleDate date, boolean monthShown) {
34         this.type = Type.DELIMITER;
35         this.date = date;
36         this.monthShown = monthShown;
37     }
38     public TransactionListItem(@NotNull LedgerTransaction transaction,
39                                @Nullable String boldAccountName) {
40         this.type = Type.TRANSACTION;
41         this.transaction = transaction;
42         this.boldAccountName = boldAccountName;
43     }
44     public TransactionListItem() {
45         this.type = Type.HEADER;
46     }
47     @NonNull
48     public Type getType() {
49         return type;
50     }
51     @NonNull
52     public SimpleDate getDate() {
53         if (date != null)
54             return date;
55         if (type != Type.TRANSACTION)
56             throw new IllegalStateException("Only transaction items have a date");
57         return transaction.getDate();
58     }
59     public boolean isMonthShown() {
60         return monthShown;
61     }
62     @NotNull
63     public LedgerTransaction getTransaction() {
64         if (type != Type.TRANSACTION)
65             throw new IllegalStateException(
66                     String.format("Item type is not %s, but %s", Type.TRANSACTION, type));
67         return transaction;
68     }
69     public @Nullable
70     String getBoldAccountName() {
71         return boldAccountName;
72     }
73     public enum Type {
74         TRANSACTION, DELIMITER, HEADER;
75         public static Type valueOf(int i) {
76             if (i == TRANSACTION.ordinal())
77                 return TRANSACTION;
78             else if (i == DELIMITER.ordinal())
79                 return DELIMITER;
80             else if (i == HEADER.ordinal())
81                 return HEADER;
82             else
83                 throw new IllegalStateException("Unexpected value: " + i);
84         }
85     }
86 }