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.
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.
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/>.
18 package net.ktnx.mobileledger.model;
20 import androidx.annotation.NonNull;
21 import androidx.annotation.Nullable;
23 import net.ktnx.mobileledger.utils.SimpleDate;
25 import org.jetbrains.annotations.NotNull;
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;
37 this.monthShown = monthShown;
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;
46 public TransactionListItem() {
47 this.type = Type.HEADER;
49 public String getRunningTotal() {
53 public Type getType() {
57 public SimpleDate getDate() {
60 if (type != Type.TRANSACTION)
61 throw new IllegalStateException("Only transaction items have a date");
62 return transaction.getDate();
64 public boolean isMonthShown() {
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));
75 String getBoldAccountName() {
76 return boldAccountName;
79 TRANSACTION, DELIMITER, HEADER;
80 public static Type valueOf(int i) {
81 if (i == TRANSACTION.ordinal())
83 else if (i == DELIMITER.ordinal())
85 else if (i == HEADER.ordinal())
88 throw new IllegalStateException("Unexpected value: " + i);