]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/json/ParsedQuantity.java
50ce67829e9bb4ab2db7859ce4943ebc2e40b2ee
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / ParsedQuantity.java
1 /*
2  * Copyright © 2019 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.json;
19
20 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
21
22 @JsonIgnoreProperties(ignoreUnknown = true)
23 public class ParsedQuantity {
24     private long decimalMantissa;
25     private int decimalPlaces;
26     public ParsedQuantity() {
27     }
28     public ParsedQuantity(String input) {
29         parseString(input);
30     }
31     public long getDecimalMantissa() {
32         return decimalMantissa;
33     }
34     public void setDecimalMantissa(long decimalMantissa) {
35         this.decimalMantissa = decimalMantissa;
36     }
37     public int getDecimalPlaces() {
38         return decimalPlaces;
39     }
40     public void setDecimalPlaces(int decimalPlaces) {
41         this.decimalPlaces = decimalPlaces;
42     }
43     public float asFloat() {
44         return (float) (decimalMantissa * Math.pow(10, -decimalPlaces));
45     }
46     public void parseString(String input) {
47         int pointPos = input.indexOf('.');
48         if (pointPos >= 0) {
49             String integral = input.replace(".", "");
50             decimalMantissa = Long.valueOf(integral);
51             decimalPlaces = input.length() - pointPos - 1;
52         }
53         else {
54             decimalMantissa = Long.valueOf(input);
55             decimalPlaces = 0;
56         }
57     }
58 }