Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 66066b3

Browse files
add method replaceData(key, T ob)
1 parent 4ea5c99 commit 66066b3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/main/java/tech/bingulhan/hanguiapi/gui/HanGuiBuilder.java

+15
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ public Optional<GuiData> getData(@NotNull String key) {
8787
return Optional.empty();
8888
}
8989

90+
91+
9092
public <T> boolean addData(@NotNull String key,@NotNull T t) {
9193
if (dataList.stream().anyMatch(guiData -> guiData.getT().equals(key))) {
9294
Bukkit.getLogger().info("d");
@@ -98,6 +100,19 @@ public <T> boolean addData(@NotNull String key,@NotNull T t) {
98100
return true;
99101
}
100102

103+
public <T> boolean replaceData(@NotNull String key,@NotNull T t) {
104+
if (dataList.stream().anyMatch(guiData -> guiData.getT().equals(key))) {
105+
removeData(key);
106+
addData(key, t);
107+
return true;
108+
}
109+
110+
dataList.add(new GuiData<T>(key, t));
111+
112+
return false;
113+
}
114+
115+
101116
public boolean removeData(@NotNull String key) {
102117
if (!getData(key).isPresent()) {
103118
return false;

0 commit comments

Comments
 (0)