added Coffin prefix

This commit is contained in:
Willem Cazander 2022-02-02 18:02:46 +01:00
parent d1b7c5fabc
commit 87841811af
6 changed files with 9 additions and 9 deletions

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ȍőnStoreKeyʸᴰ> {
public interface BãßBȍőnCoffin<T extends BãßBȍőnCoffinStoreKeyʸᴰ> {
Object GET_OBJ(T key);

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ȍőnStoreKeyʸᴰ> 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,7 +16,7 @@ public interface BãßBȍőnCoffinOpen<T extends BãßBȍőnStoreKeyʸᴰ> exten
PUT_OBJ(key, new HashMap<>());
}
static <Y extends BãßBȍőnStoreKeyʸᴰ> BãßBȍőnCoffinOpen<Y> newInstance() {
static <Y extends BãßBȍőnCoffinStoreKeyʸᴰ> BãßBȍőnCoffinOpen<Y> newInstance() {
return new BãßBȍőnCoffinOpen<Y>() {
final Map<Y,Object> initMap = new HashMap<>();

View file

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

View file

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