gdxapp4d/numberxd/src/main/love/distributedrebirth/numberxd/base2t/T03PartTrit.java

32 lines
1.4 KiB
Java
Raw Normal View History

2022-01-30 22:00:16 +01:00
package love.distributedrebirth.numberxd.base2t;
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 18:01:10 +01:00
import love.distributedrebirth.bassboonyd.BãßBȍőnInfoʸᴰ;
2022-02-02 18:12:59 +01:00
import love.distributedrebirth.numberxd.base2t.part.BãßBȍőnPart;
import love.distributedrebirth.numberxd.base2t.part.BãßBȍőnPartKey;
2022-02-02 18:29:34 +01:00
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
2022-02-02 18:01:10 +01:00
@BãßBȍőnInfoʸᴰ(name = "T03PartTrit", purpose = "The distribution by 3.")
2022-02-02 18:12:59 +01:00
public enum T03PartTrit implements BãßBȍőnPart<T03PartTrit> {
2022-01-28 11:19:52 +01:00
2022-01-30 14:50:21 +01:00
PART_1("˦","0","","1"),
PART_2("˧","1","","2"),
PART_3("˨","2","","3"),
2022-01-28 11:19:52 +01:00
;
2022-02-02 18:12:59 +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; };
private T03PartTrit(String idTone, String idLetter, String chinaKey, String chinaValue) {
2022-02-02 18:12:59 +01:00
BBC.PUT_OBJ(BãßBȍőnPartKey.ID_TONE, idTone);
BBC.PUT_OBJ(BãßBȍőnPartKey.ID_LETTER, idLetter);
BBC.PUT_OBJ(BãßBȍőnPartKey.CHINA_KEY, chinaKey);
BBC.PUT_OBJ(BãßBȍőnPartKey.CHINA_VALUE, chinaValue);
BBC.PUT_MAP(BãßBȍőnPartKey.MAP_TONE);
BBC.PUT_MAP(BãßBȍőnPartKey.MAP_CHINA);
2022-01-30 14:50:21 +01:00
}
2022-01-28 11:19:52 +01:00
}