added Coffin prefix
This commit is contained in:
parent
d1b7c5fabc
commit
87841811af
|
@ -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);
|
||||
|
||||
|
|
|
@ -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<>();
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
|
@ -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();
|
||||
}
|
|
@ -3,7 +3,7 @@ package love.distributedrebirth.numberxd.base2t.bone;
|
|||
import java.util.Map;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import love.distributedrebirth.bassboonyd.BãßBȍőnStore;
|
||||
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinStore;
|
||||
import love.distributedrebirth.bassboonyd.BãßBȍőnEnumSetʸᴰ;
|
||||
|
||||
/**
|
||||
|
@ -11,7 +11,7 @@ import love.distributedrebirth.bassboonyd.BãßBȍőnEnumSetʸᴰ;
|
|||
*
|
||||
* @author willemtsade ©Δ∞ 仙上主天
|
||||
*/
|
||||
public interface BassBone<T extends BassBone<T>> extends BãßBȍőnEnumSetʸᴰ<T>, BãßBȍőnStore<BassBoneStoreKey> {
|
||||
public interface BassBone<T extends BassBone<T>> extends BãßBȍőnEnumSetʸᴰ<T>, BãßBȍőnCoffinStore<BassBoneStoreKey> {
|
||||
|
||||
default String getIdentifierTone() {
|
||||
return GET_BBC().GET_STR(BassBoneStoreKey.ID_TONE);
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
package love.distributedrebirth.numberxd.base2t.bone;
|
||||
|
||||
import love.distributedrebirth.bassboonyd.BãßBȍőnStoreKeyʸᴰ;
|
||||
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinStoreKeyʸᴰ;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author willemtsade ©Δ∞ 仙上主天
|
||||
*/
|
||||
public enum BassBoneStoreKey implements BãßBȍőnStoreKeyʸᴰ {
|
||||
public enum BassBoneStoreKey implements BãßBȍőnCoffinStoreKeyʸᴰ {
|
||||
|
||||
ID_TONE,
|
||||
ID_LETTER,
|
||||
|
|
Loading…
Reference in a new issue