Enum Class RegistryAttribute

java.lang.Object
java.lang.Enum<RegistryAttribute>
net.fabricmc.fabric.api.event.registry.RegistryAttribute
All Implemented Interfaces:
Serializable, Comparable<RegistryAttribute>, Constable

public enum RegistryAttribute extends Enum<RegistryAttribute>
  • Enum Constant Details

    • PERSISTED

      public static final RegistryAttribute PERSISTED
      Registry will be saved to disk when modded.
    • SYNCED

      public static final RegistryAttribute SYNCED
      Registry will be synced to the client when modded.
    • MODDED

      public static final RegistryAttribute MODDED
      Registry has been modded.
  • Method Details

    • values

      public static RegistryAttribute[] 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 RegistryAttribute 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