Enum Class EnchantmentSource

java.lang.Object
java.lang.Enum<EnchantmentSource>
net.fabricmc.fabric.api.item.v1.EnchantmentSource
All Implemented Interfaces:
Serializable, Comparable<EnchantmentSource>, Constable

public enum EnchantmentSource extends Enum<EnchantmentSource>
Determines where an enchantment has been loaded from.
  • Enum Constant Details

    • VANILLA

      public static final EnchantmentSource VANILLA
      An enchantment loaded from the vanilla data pack.
    • MOD

      public static final EnchantmentSource MOD
      An enchantment loaded from mods' bundled resources.

      This includes the additional builtin data packs registered by mods with Fabric Resource Loader.

    • DATA_PACK

      public static final EnchantmentSource DATA_PACK
      An enchantment loaded from an external data pack.
  • Method Details

    • values

      public static EnchantmentSource[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EnchantmentSource valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • isBuiltin

      public boolean isBuiltin()
      Returns whether this enchantment source is builtin and bundled in the vanilla or mod resources.

      VANILLA and MOD are builtin.

      Returns:
      true if builtin, false otherwise