net.minestom.server.potion.PotionEffectImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.potion;
import net.minestom.server.registry.Registry;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
record PotionEffectImpl(Registry.PotionEffectEntry registry) implements PotionEffect {
private static final Registry.Container CONTAINER = Registry.createStaticContainer(Registry.Resource.POTION_EFFECTS,
(namespace, properties) -> new PotionEffectImpl(Registry.potionEffect(namespace, properties)));
static PotionEffect get(@NotNull String namespace) {
return CONTAINER.get(namespace);
}
static PotionEffect getSafe(@NotNull String namespace) {
return CONTAINER.getSafe(namespace);
}
static PotionEffect getId(int id) {
return CONTAINER.getId(id);
}
static Collection values() {
return CONTAINER.values();
}
@Override
public String toString() {
return name();
}
}