Added ʸᴰ postfix

This commit is contained in:
Willem Cazander 2022-02-02 18:06:12 +01:00
parent 87841811af
commit 559054cddf
20 changed files with 64 additions and 64 deletions

View file

@ -4,7 +4,7 @@ import java.util.HashMap;
import java.util.Map;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public interface BãßBȍőnCoffinOpen<T extends BãßBȍőnCoffinStoreKeyʸᴰ> extends BãßBȍőnCoffin<T> {
public interface BãßBȍőnCoffinOpenʸᴰ<T extends BãßBȍőnCoffinStoreKeyʸᴰ> extends BãßBȍőnCoffinʸᴰ<T> {
Object PUT_OBJ(T key, Object value);
@ -16,8 +16,8 @@ public interface BãßBȍőnCoffinOpen<T extends BãßBȍőnCoffinStoreKeyʸᴰ>
PUT_OBJ(key, new HashMap<>());
}
static <Y extends BãßBȍőnCoffinStoreKeyʸᴰ> BãßBȍőnCoffinOpen<Y> newInstance() {
return new BãßBȍőnCoffinOpen<Y>() {
static <Y extends BãßBȍőnCoffinStoreKeyʸᴰ> BãßBȍőnCoffinOpenʸᴰ<Y> newInstance() {
return new BãßBȍőnCoffinOpenʸᴰ<Y>() {
final Map<Y,Object> initMap = new HashMap<>();
@Override

View file

@ -1,7 +1,7 @@
package love.distributedrebirth.bassboonyd;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public interface BãßBȍőnCoffinStore<T extends BãßBȍőnCoffinStoreKeyʸᴰ> {
public interface BãßBȍőnCoffinStoreʸᴰ<T extends BãßBȍőnCoffinStoreKeyʸᴰ> {
BãßBȍőnCoffin<T> GET_BBC();
BãßBȍőnCoffinʸᴰ<T> GET_BBC();
}

View file

@ -4,7 +4,7 @@ import java.util.List;
import java.util.Map;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public interface BãßBȍőnCoffin<T extends BãßBȍőnCoffinStoreKeyʸᴰ> {
public interface BãßBȍőnCoffinʸᴰ<T extends BãßBȍőnCoffinStoreKeyʸᴰ> {
Object GET_OBJ(T key);

View file

@ -1,7 +1,7 @@
package love.distributedrebirth.bassboonyd;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class BãßBȍőnConstants {
public class BãßBȍőnConstantsʸᴰ {
public static final String STR_VALUES = "values";

View file

@ -10,6 +10,6 @@ public interface BãßBȍőnEnumInstanceʸᴰ<T> extends BãßBȍőnEnumʸᴰ<T>
}
default T BãßInstance() {
return BãßInstances()[BãßBȍőnConstants.INT_ZERO];
return BãßInstances()[BãßBȍőnConstantsʸᴰ.INT_ZERO];
}
}

View file

@ -10,7 +10,7 @@ public interface BãßBȍőnEnumʸᴰ<T> {
}
default String BȍőnNaamI18N() {
return BãßNaam() + BãßBȍőnConstants.STR_DOT + name();
return BãßNaam() + BãßBȍőnConstantsʸᴰ.STR_DOT + name();
}
default String BãßNaam() {
@ -20,7 +20,7 @@ public interface BãßBȍőnEnumʸᴰ<T> {
@SuppressWarnings("unchecked")
default T[] BãßInstances() {
try {
Object result = getClass().getMethod(BãßBȍőnConstants.STR_VALUES).invoke(null);
Object result = getClass().getMethod(BãßBȍőnConstantsʸᴰ.STR_VALUES).invoke(null);
return (T[]) result;
} catch (Exception e) {
throw new RuntimeException(e);