X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fjson%2FAPI.java;fp=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fjson%2FAPI.java;h=d634f29e616d1e13746238343f88ffaa6885cee6;hb=bb789332571609eeb1bef6e39b7ad359227d1045;hp=0000000000000000000000000000000000000000;hpb=28049f2a891665fd03f19617292236cb50ab4622;p=mobile-ledger.git diff --git a/app/src/main/java/net/ktnx/mobileledger/json/API.java b/app/src/main/java/net/ktnx/mobileledger/json/API.java new file mode 100644 index 00000000..d634f29e --- /dev/null +++ b/app/src/main/java/net/ktnx/mobileledger/json/API.java @@ -0,0 +1,79 @@ +/* + * Copyright © 2020 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. + * + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. + * + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . + */ + +package net.ktnx.mobileledger.json; + +import android.content.res.Resources; +import android.util.SparseArray; + +import net.ktnx.mobileledger.R; + +public enum API { + auto(0), html(-1), v1_14(-2), v1_15(-3), v1_19_1(-4); + private static final SparseArray map = new SparseArray<>(); + public static API[] allVersions = {v1_19_1, v1_15, v1_14}; + + static { + for (API item : API.values()) { + map.put(item.value, item); + } + } + + private final int value; + + API(int value) { + this.value = value; + } + public static API valueOf(int i) { + return map.get(i, auto); + } + public int toInt() { + return this.value; + } + public String getDescription(Resources resources) { + switch (this) { + case auto: + return resources.getString(R.string.api_auto); + case html: + return resources.getString(R.string.api_html); + case v1_14: + return resources.getString(R.string.api_1_14); + case v1_15: + return resources.getString(R.string.api_1_15); + case v1_19_1: + return resources.getString(R.string.api_1_19_1); + default: + throw new IllegalStateException("Unexpected value: " + value); + } + } + public String getDescription() { + switch (this) { + case auto: + return "(automatic)"; + case html: + return "(HTML)"; + case v1_14: + return "1.14"; + case v1_15: + return "1.15"; + case v1_19_1: + return "1.19.1"; + default: + throw new IllegalStateException("Unexpected value: " + this); + } + } +}