gdxapp4d/demo4d-numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/T10PartDecimal.java

39 lines
1.9 KiB
Java
Raw Normal View History

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ʸᴰ;
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-02-02 18:01:10 +01:00
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
2022-02-05 20:34:50 +01:00
@BãßBȍőnClassInfoʸᴰ(name = "T10PartDecimal", purpose = "The distribution by 10 (finance numbers).")
@BãßBȍőnPartAlt1Infoʸᴰ(name = "Tone Letter LR", website = "https://en.wikipedia.org/wiki/Tone_letter")
@BãßBȍőnPartAlt2Infoʸᴰ(name = "Tone Letter RL", website = "https://en.wikipedia.org/wiki/Tone_letter")
public enum T10PartDecimal implements BãßBȍőnPartAlt2ʸᴰ<T10PartDecimal> {
PART_1 ("˥","","zero", "˥",""),
PART_2 ("˦","","one", "˦",""),
PART_3 ("˧","","two", "˧",""),
PART_4 ("˨","","three","˨",""),
PART_5 ("˩","","four", "˩",""),
PART_6 ("","","five", "",""),
PART_7 ("","","six", "",""),
PART_8 ("","","seven","",""),
PART_9 ("","","eight","",""),
PART_10("","","nine", "",""),
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-02-05 16:25:41 +01:00
private T10PartDecimal(String dialTone, String chinaKey, String chinaValue, String alt1Value, String alt2Value) {
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);
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.ALT_1_VALUE, alt1Value);
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.ALT_2_VALUE, alt2Value);
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
}