geforkt von Mirrors/Paper
#671: Implement PersistentDataContainer#getKeys()
Dieser Commit ist enthalten in:
Ursprung
50484a657e
Commit
b900513035
@ -1,9 +1,11 @@
|
||||
package org.bukkit.craftbukkit.persistence;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import net.minecraft.server.NBTBase;
|
||||
import net.minecraft.server.NBTTagCompound;
|
||||
import org.apache.commons.lang.Validate;
|
||||
@ -70,6 +72,20 @@ public final class CraftPersistentDataContainer implements PersistentDataContain
|
||||
return z != null ? z : defaultValue;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<NamespacedKey> getKeys() {
|
||||
Set<NamespacedKey> keys = new HashSet<>();
|
||||
|
||||
this.customDataTags.keySet().forEach(key -> {
|
||||
String[] keyData = key.split(":", 2);
|
||||
if (keyData.length == 2) {
|
||||
keys.add(new NamespacedKey(keyData[0], keyData[1]));
|
||||
}
|
||||
});
|
||||
|
||||
return keys;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void remove(NamespacedKey key) {
|
||||
Validate.notNull(key, "The provided key for the custom value was null");
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren