38 lines
1.8 KiB
Java
38 lines
1.8 KiB
Java
package love.distributedrebirth.numberxd.base2t.part;
|
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinʸᴰ;
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinOpenʸᴰ;
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnClassInfoʸᴰ;
|
|
|
|
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
|
|
@BãßBȍőnClassInfoʸᴰ(name = "T12PartUncial", purpose = "The distribution by 12 (emperor).")
|
|
@BãßBȍőnPartAlt1Infoʸᴰ(name = "Transdecimal symbols", website = "https://en.wikipedia.org/wiki/Duodecimal#Transdecimal_symbols")
|
|
public enum T12PartUncial implements BãßBȍőnPartAlt1ʸᴰ<T12PartUncial> {
|
|
|
|
PART_1 ("˥","日","sun", "0"),
|
|
PART_2 ("˧","月","moon", "1"),
|
|
PART_3 ("˩","星","star", "2"),
|
|
PART_4 ("꜒","山","mountain","3"),
|
|
PART_5 ("꜔","龍","dragon", "4"),
|
|
PART_6 ("꜖","鳳","phoenix", "5"),
|
|
PART_7 ("꜈","杯","cup", "6"),
|
|
PART_8 ("꜊","藻","pondweed","7"),
|
|
PART_9 ("꜌","爐","furnace", "8"),
|
|
PART_10("꜍","種","seed", "9"),
|
|
PART_11("꜏","黼","axe", "\u218a"), // TURNED DIGIT TWO
|
|
PART_12("꜑","亞","nozero", "\u218b"), // TURNED DIGIT THREE
|
|
;
|
|
|
|
private final BãßBȍőnCoffinOpenʸᴰ<BãßBȍőnPartKeyʸᴰ> BBC = BãßBȍőnCoffinOpenʸᴰ.newInstance();
|
|
public BãßBȍőnCoffinʸᴰ<BãßBȍőnPartKeyʸᴰ> GET_BBC() { return BBC; }
|
|
public static int LENGTH() { return values().length; };
|
|
|
|
private T12PartUncial(String dialTone, String chinaKey, String chinaValue, String alt1Value) {
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.DIAL_TONE, dialTone);
|
|
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.INIT_BOON(this);
|
|
}
|
|
}
|