package com.mstar.android.tvapi.common.vo;

import java.util.Hashtable;

/* JADX INFO: loaded from: classes.dex */
public class AtvSystemStandard {
    private static Hashtable<Integer, Integer> htEnumAtvSystemStandard = new Hashtable<>();

    public enum EnumAtvSystemStandard {
        E_BG(0),
        E_DK(4),
        E_I(3),
        E_L(9),
        E_M(10),
        E_M_BTSC(11),
        E_NUM(12);

        private static int seq = 0;
        private final int value;

        EnumAtvSystemStandard(int i2) {
            this.value = i2;
            setHashtableValue(i2);
        }

        public static int getOrdinalThroughValue(int i2) {
            Integer num = (Integer) AtvSystemStandard.htEnumAtvSystemStandard.get(Integer.valueOf(i2));
            if (num != null) {
                return num.intValue();
            }
            return -1;
        }

        private static void setHashtableValue(int i2) {
            AtvSystemStandard.htEnumAtvSystemStandard.put(new Integer(i2), new Integer(seq));
            seq++;
        }

        public int getValue() {
            return this.value;
        }
    }
}
