UNPKG

744 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3class Ingkel {
4 constructor(id, name) {
5 this.id = id;
6 this.name = name;
7 Object.freeze(this);
8 }
9 static get values() { return _C_VAL; }
10 static get WONG() { return _C_VAL[0]; }
11 static get SATO() { return _C_VAL[1]; }
12 static get MINA() { return _C_VAL[2]; }
13 static get MANUK() { return _C_VAL[3]; }
14 static get TARU() { return _C_VAL[4]; }
15 static get BUKU() { return _C_VAL[5]; }
16}
17exports.Ingkel = Ingkel;
18const _C_VAL = [
19 new Ingkel(0, "Wong"),
20 new Ingkel(1, "Sato"),
21 new Ingkel(2, "Mina"),
22 new Ingkel(3, "Manuk"),
23 new Ingkel(4, "Taru"),
24 new Ingkel(5, "Buku"),
25];
26Object.freeze(_C_VAL);