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

35 lines
1.3 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ʸᴰ;
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinOpenʸᴰ;
2022-02-02 18:01:10 +01:00
import love.distributedrebirth.bassboonyd.BãßBȍőnInfoʸᴰ;
2022-02-01 16:27:06 +01:00
import love.distributedrebirth.numberxd.base2t.bone.BassBone;
import love.distributedrebirth.numberxd.base2t.bone.BassBoneStoreKey;
/**
2022-01-30 14:50:21 +01:00
* The distribution by 3.
*
2022-01-31 13:40:01 +01:00
* @author willemtsade ©Δ 仙上主天
*/
2022-02-02 18:01:10 +01:00
@BãßBȍőnInfoʸᴰ(name = "T03PartTrit", purpose = "The distribution by 3.")
2022-02-01 18:31:51 +01:00
public enum T03PartTrit implements BassBone<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:06:12 +01:00
private final BãßBȍőnCoffinOpenʸᴰ<BassBoneStoreKey> BBC = BãßBȍőnCoffinOpenʸᴰ.newInstance();
public BãßBȍőnCoffinʸᴰ<BassBoneStoreKey> 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:01:10 +01:00
BBC.PUT_OBJ(BassBoneStoreKey.ID_TONE, idTone);
BBC.PUT_OBJ(BassBoneStoreKey.ID_LETTER, idLetter);
BBC.PUT_OBJ(BassBoneStoreKey.CHINA_KEY, chinaKey);
BBC.PUT_OBJ(BassBoneStoreKey.CHINA_VALUE, chinaValue);
BBC.PUT_MAP(BassBoneStoreKey.MAP_TONE);
BBC.PUT_MAP(BassBoneStoreKey.MAP_CHINA);
2022-01-30 14:50:21 +01:00
}
2022-01-28 11:19:52 +01:00
}