2022-02-02 22:51:56 +01:00
|
|
|
package love.distributedrebirth.numberxd.base2t.part;
|
2022-01-28 11:19:52 +01:00
|
|
|
|
2022-02-02 18:06:12 +01:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinʸᴰ;
|
2022-02-02 18:29:34 +01:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
|
2022-02-02 18:06:12 +01:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinOpenʸᴰ;
|
2022-02-02 19:17:30 +01:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnClassInfoʸᴰ;
|
2022-01-30 18:05:18 +01:00
|
|
|
|
2022-02-02 18:29:34 +01:00
|
|
|
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
|
2022-02-05 20:34:50 +01:00
|
|
|
@BãßBȍőnClassInfoʸᴰ(name = "T03PartTrit", purpose = "The distribution by 3 (number123).")
|
2022-02-02 18:32:23 +01:00
|
|
|
public enum T03PartTrit implements BãßBȍőnPartʸᴰ<T03PartTrit> {
|
2022-01-28 11:19:52 +01:00
|
|
|
|
2022-02-03 01:07:12 +01:00
|
|
|
PART_1("˦","一","1"),
|
|
|
|
|
PART_2("˧","二","2"),
|
|
|
|
|
PART_3("˨","三","3"),
|
2022-01-28 11:19:52 +01:00
|
|
|
;
|
|
|
|
|
|
2022-02-02 18:32:23 +01:00
|
|
|
private final BãßBȍőnCoffinOpenʸᴰ<BãßBȍőnPartKeyʸᴰ> BBC = BãßBȍőnCoffinOpenʸᴰ.newInstance();
|
|
|
|
|
public BãßBȍőnCoffinʸᴰ<BãßBȍőnPartKeyʸᴰ> GET_BBC() { return BBC; }
|
2022-01-31 20:13:41 +01:00
|
|
|
public static int LENGTH() { return values().length; };
|
2022-01-29 12:48:53 +01:00
|
|
|
|
2022-02-05 16:25:41 +01:00
|
|
|
private T03PartTrit(String dialTone, String chinaKey, String chinaValue) {
|
|
|
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.DIAL_TONE, dialTone);
|
2022-02-02 18:32:23 +01:00
|
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.CHINA_KEY, chinaKey);
|
|
|
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.CHINA_VALUE, chinaValue);
|
2022-02-06 15:49:32 +01:00
|
|
|
BBC.BOON_INIT(this);
|
2022-01-30 14:50:21 +01:00
|
|
|
}
|
2022-01-28 11:19:52 +01:00
|
|
|
}
|