package io.papermc.paper.registry.keys; import static net.kyori.adventure.key.Key.key; import io.papermc.paper.generated.GeneratedFrom; import io.papermc.paper.registry.RegistryKey; import io.papermc.paper.registry.TypedKey; import net.kyori.adventure.key.Key; import org.bukkit.inventory.meta.trim.TrimPattern; import org.jetbrains.annotations.ApiStatus; import org.jetbrains.annotations.NotNull; /** * Vanilla keys for {@link RegistryKey#TRIM_PATTERN}. * * @apiNote The fields provided here are a direct representation of * what is available from the vanilla game source. They may be * changed (including removals) on any Minecraft version * bump, so cross-version compatibility is not provided on the * same level as it is on most of the other API. */ @SuppressWarnings({ "unused", "SpellCheckingInspection" }) @GeneratedFrom("1.20.2") @ApiStatus.Experimental public final class TrimPatternKeys { /** * {@code minecraft:coast} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey COAST = create(key("coast")); /** * {@code minecraft:dune} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey DUNE = create(key("dune")); /** * {@code minecraft:eye} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey EYE = create(key("eye")); /** * {@code minecraft:host} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey HOST = create(key("host")); /** * {@code minecraft:raiser} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey RAISER = create(key("raiser")); /** * {@code minecraft:rib} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey RIB = create(key("rib")); /** * {@code minecraft:sentry} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey SENTRY = create(key("sentry")); /** * {@code minecraft:shaper} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey SHAPER = create(key("shaper")); /** * {@code minecraft:silence} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey SILENCE = create(key("silence")); /** * {@code minecraft:snout} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey SNOUT = create(key("snout")); /** * {@code minecraft:spire} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey SPIRE = create(key("spire")); /** * {@code minecraft:tide} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey TIDE = create(key("tide")); /** * {@code minecraft:vex} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey VEX = create(key("vex")); /** * {@code minecraft:ward} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey WARD = create(key("ward")); /** * {@code minecraft:wayfinder} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey WAYFINDER = create(key("wayfinder")); /** * {@code minecraft:wild} * * @apiNote This field is version-dependant and may be removed in future Minecraft versions */ public static final TypedKey WILD = create(key("wild")); private TrimPatternKeys() { } /** * Creates a key for {@link TrimPattern} in a registry. * * @param key the value's key in the registry * @return a new typed key */ @ApiStatus.Experimental public static @NotNull TypedKey create(final @NotNull Key key) { return TypedKey.create(RegistryKey.TRIM_PATTERN, key); } }