]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/model/TransactionListItem.java
more pronounced day/month delimiters in the transaction list
[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     private String runningTotal;
34     public TransactionListItem(@NotNull SimpleDate date, boolean monthShown) {
35         this.type = Type.DELIMITER;
36         this.date = date;
37         this.monthShown = monthShown;
38     }
39     public TransactionListItem(@NotNull LedgerTransaction transaction,
40                                @Nullable String boldAccountName, @Nullable String runningTotal) {
41         this.type = Type.TRANSACTION;
42         this.transaction = transaction;
43         this.boldAccountName = boldAccountName;
44         this.runningTotal = runningTotal;
45     }
46     public TransactionListItem() {
47         this.type = Type.HEADER;
48     }
49     public String getRunningTotal() {
50         return runningTotal;
51     }
52     @NonNull
53     public Type getType() {
54         return type;
55     }
56     @NonNull
57     public SimpleDate getDate() {
58         if (date != null)
59             return date;
60         if (type != Type.TRANSACTION)
61             throw new IllegalStateException("Only transaction items have a date");
62         return transaction.getDate();
63     }
64     public boolean isMonthShown() {
65         return monthShown;
66     }
67     @NotNull
68     public LedgerTransaction getTransaction() {
69         if (type != Type.TRANSACTION)
70             throw new IllegalStateException(
71                     String.format("Item type is not %s, but %s", Type.TRANSACTION, type));
72         return transaction;
73     }
74     public @Nullable
75     String getBoldAccountName() {
76         return boldAccountName;
77     }
78     public enum Type {
79         TRANSACTION, DELIMITER, HEADER;
80         public static Type valueOf(int i) {
81             if (i == TRANSACTION.ordinal())
82                 return TRANSACTION;
83             else if (i == DELIMITER.ordinal())
84                 return DELIMITER;
85             else if (i == HEADER.ordinal())
86                 return HEADER;
87             else
88                 throw new IllegalStateException("Unexpected value: " + i);
89         }
90     }
91 }