]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/model/Currency.java
AccountRow: copy constructor
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / Currency.java
index f332f001667cf1e83cff65571271dcb141847c2c..1c7dbf7f81f014062c1282d55d2f9633d47abe9b 100644 (file)
@@ -76,6 +76,10 @@ public class Currency {
         MobileLedgerProfile profile = Data.getProfile();
         return profile.loadCurrencyByName(name);
     }
+    public static Currency loadById(int id) {
+        MobileLedgerProfile profile = Data.getProfile();
+        return profile.loadCurrencyById(id);
+    }
     static public boolean equal(Currency left, Currency right) {
         if (left == null) {
             return right == null;
@@ -119,22 +123,6 @@ public class Currency {
         this.hasGap = hasGap;
     }
     public enum Position {
-        before(-1), after(1), unknown(0), none(-2);
-        Position(int value) {
-        }
-        static Position valueOf(int value) {
-            switch (value) {
-                case -1:
-                    return before;
-                case +1:
-                    return after;
-                case 0:
-                    return unknown;
-                case -2:
-                    return none;
-                default:
-                    throw new IllegalStateException(String.format("Unexpected value (%d)", value));
-            }
-        }
+        before, after, unknown, none
     }
 }