All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.item.ItemMetaView Maven / Gradle / Ivy

package net.minestom.server.item;

import net.minestom.server.tag.TagReadable;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;

@SuppressWarnings("ALL")
@ApiStatus.Experimental
public interface ItemMetaView extends TagReadable {
    @ApiStatus.Experimental
    non-sealed interface Builder extends ItemMeta.Builder {
        default @NotNull ItemMeta build() {
            return new ItemMetaImpl(tagHandler().copy());
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy