Minestom/src/main/java/net/minestom/server/potion/PotionType.java

28 lines
853 B
Java

package net.minestom.server.potion;
import net.minestom.server.registry.StaticProtocolObject;
import net.minestom.server.utils.NamespaceID;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Collection;
public sealed interface PotionType extends StaticProtocolObject, PotionTypes permits PotionTypeImpl {
static @NotNull Collection<@NotNull PotionType> values() {
return PotionTypeImpl.values();
}
static @Nullable PotionType fromNamespaceId(@NotNull String namespaceID) {
return PotionTypeImpl.getSafe(namespaceID);
}
static @Nullable PotionType fromNamespaceId(@NotNull NamespaceID namespaceID) {
return fromNamespaceId(namespaceID.asString());
}
static @Nullable PotionType fromId(int id) {
return PotionTypeImpl.getId(id);
}
}