Interface Registry<T>
- All Superinterfaces:
IndexedIterable<T>
,Iterable<T>
,com.mojang.serialization.Keyable
- All Known Subinterfaces:
DefaultedRegistry<T>
,MutableRegistry<T>
- All Known Implementing Classes:
SimpleDefaultedRegistry
,SimpleRegistry
Terminologies
A registry is an object that holds the mapping between three things:
the string ID, the numeric ID, and the registered value. There are many registries
for different types of registerable objects, and a registry's type parameter indicates
the accepted type. For example, you register your Block
to
Registry<Block>
. It's important to note that registries themselves are registered
in a "registry of registries", Registries.ROOT
.
The string ID, usually just called "ID", is a human-readable
Identifier
that uniquely identifies the registered value in a registry.
This should stay the same between two game versions, and is usually used for disk
storage.
The numeric ID or raw ID is an integer assigned automatically by the registry to each registered value. This is not guaranteed to stay the same between two game versions, and is usually used for networking purposes.
The registered value, often just called "value" in the code, is the value added to the registry. The registry's type parameter determines the type of the registered value.
Each registered value can also be identified with a registry key. A registry key is a combination of the registry's ID and the registered value's ID. Using a registry key makes the type of the ID's associated value clear, as the type parameter contains the type.
A registry entry is an object holding a value that can be registered in a registry. In most cases, the value is already registered in a registry ("reference entry"), hence the name; however, it is possible to create a registry entry by direct reference ("direct entry"). This is useful for data packs, as they can define one-time use values directly without having to register them every time.
A registry entry list
is a list
of registry entries. This, is either a direct reference to each item, or
a reference to a tag. A tag is a way to dynamically
define a list of registered values. Anything registered in a registry
can be tagged, and each registry holds a list of tags it recognizes.
Static and dynamic registries
There are two kinds of registries: static and dynamic.
- A static registry is a registry whose values are hard-coded in the game and cannot be added or modified through data packs. Most registries are static. Since they cannot be modified (without mods), it is a singleton, and exists in this class. During the game bootstrap, vanilla objects are registered, after which the registry gets frozen to prohibit further changes.
- A dynamic registry is a registry whose values can be
added or replaced through data packs. A dynamic registry is bound to a server,
and multiple registries for the same type of registerable object can exist during
the lifetime of the game. When a player joins, the server sends the contents of
the dynamic registry manager to the client, but only "network serializable"
registries are sent. To access a dynamic registry, first get an instance of the
dynamic registry manager, then call the
DynamicRegistryManager.get(net.minecraft.registry.RegistryKey<? extends net.minecraft.registry.Registry<? extends E>>)
method.
Using Registry
Reading Registry
A registry is also an IndexedIterable
. Therefore, registries can be
iterated using, e.g. for (Block block : Registries.BLOCK)
.
There are several other methods used for reading the contents of the registry:
entryOf(net.minecraft.registry.RegistryKey<T>)
orgetEntry(RegistryKey)
for getting the registry entry from the key.get(Identifier)
orget(RegistryKey)
for getting the registered value from the ID or the registry key.getId(Object)
for getting the ID of a registered value.getEntry(int)
for getting the registry entry from the raw ID.getEntryList(net.minecraft.registry.tag.TagKey<T>)
anditerateEntries(net.minecraft.registry.tag.TagKey<T>)
for getting the contents of a tag,streamTags()
for streaming all tags of a registry.
Registering something to Registry
The steps for registration are different, depending on whether the registry is static or dynamic. For dynamic registries, data packs can usually be used to register a new value or replace one. For static registries, the game's code must be modified.
Static registries are defined in Registries
, and unlike the dynamic registries, it
cannot be changed after the game initialization. The game enforces this by "freezing"
the registry. Attempting to register a value after freezing causes a crash, such as
"Registry is already frozen". Modding APIs usually provide a way to bypass this restriction.
Use register(Registry, Identifier, Object)
for registering a value to a registry.
Intrusive holders
For historical reasons, there are two types of reference registry entries. (This is different from the "direct" and "reference" registry entry types.)
- Intrusive holders are registry entries tied to a specific
registerable object at instantiation time. When instantiating those, it promises
that the object is later registered - which, if broken, will result in a crash.
This is used for
Registries.BLOCK
,Registries.ITEM
,Registries.FLUID
,Registries.ENTITY_TYPE
, andRegistries.GAME_EVENT
registries. - Standalone holders are registry entries that are not intrusive. There is no restriction on instantiation.
When a class whose instances are registered as intrusive holders, such as
Block
or Item
, are instantiated
without registering, the game crashes with "Some intrusive holders were not added to
registry" error message. This includes conditional registration.
For example, the code below can cause a crash:
Item myItem = new Item(new Item.Settings());
if (condition) {
Registry.register(Registries.ITEM, new Identifier("example", "bad"), myItem);
}
The correct way is to make the instantiation conditional as well:
if (condition) {
Item myItem = new Item(new Item.Settings());
Registry.register(Registries.ITEM, new Identifier("example", "bad"), myItem);
}
- Mappings:
Namespace Name official hr
intermediary net/minecraft/class_2378
named net/minecraft/registry/Registry
-
Field Summary
Fields inherited from interface net.minecraft.util.collection.IndexedIterable
ABSENT_RAW_ID
-
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
contains
(RegistryKey<T> key) Returns whetherkey
is registered in this registry.boolean
containsId
(Identifier id) Returns whetherid
is registered in this registry.createEntry
(T value) default com.mojang.serialization.Codec<RegistryEntry<T>>
Returns the codec for serializing the registry entry ofT
.default RegistryEntry.Reference<T>
entryOf
(RegistryKey<T> key) Returns the reference registry entry for the value assignedkey
.freeze()
get
(@Nullable RegistryKey<T> key) Returns the value that is assignedkey
, ornull
if there is none.get
(@Nullable Identifier id) Returns the value that is assignedid
, ornull
if there is none.default com.mojang.serialization.Codec<T>
getCodec()
Returns the codec for serializingT
.getEntry
(int rawId) Returns the reference registry entry for the value assignedrawId
, or an empty optional if there is no such value.getEntry
(RegistryKey<T> key) Returns the reference registry entry for the value assignedkey
, or an empty optional if there is no such value.com.mojang.serialization.Lifecycle
getEntryLifecycle
(T entry) Gets the lifecycle of a registry entry.getEntryList
(TagKey<T> tag) Returns the registry entry list of values that are assignedtag
, or an empty optional if the tag is not known to the registry.Set<Map.Entry<RegistryKey<T>,
T>> Returns the set containingMap.Entry
of the registry keys and values registered in this registry.Returns the ID assigned tovalue
, ornull
if it is not registered.getIds()
Returns the set of all IDs registered in a registry.default IndexedIterable<RegistryEntry<T>>
RegistryKey<? extends Registry<T>>
getKey()
Returns the registry key that identifies this registry.Returns the registry key ofvalue
, or an empty optional if it is not registered.Set<RegistryKey<T>>
getKeys()
Returns the set of all registry keys registered in a registry.com.mojang.serialization.Lifecycle
getOrCreateEntryList
(TagKey<T> tag) getOrEmpty
(@Nullable RegistryKey<T> key) Returns the value that is assignedkey
, or an empty optional if there is none.Returns the value that is assignedid
, or an empty optional if there is none.default T
getOrThrow
(RegistryKey<T> key) Returns the value that is assignedkey
.Returns a random registry entry from this registry, or an empty optional if the registry is empty.int
Returns a registry wrapper that does not mutate the backing registry under any circumstances.default RegistryWrapper.Impl<T>
Returns a registry wrapper that creates and stores a new registry entry list when handling an unknown tag key.default Iterable<RegistryEntry<T>>
iterateEntries
(TagKey<T> tag) Returns an iterable of values that are assignedtag
, or an empty iterable if the tag is not known to the registry.default <U> Stream<U>
keys
(com.mojang.serialization.DynamicOps<U> ops) void
populateTags
(Map<TagKey<T>, List<RegistryEntry<T>>> tagEntries) static <T> T
static <V,
T extends V>
Tstatic <V,
T extends V>
Tregister
(Registry<V> registry, RegistryKey<V> key, T entry) Registersentry
toregistry
underkey
.static <V,
T extends V>
Tregister
(Registry<V> registry, Identifier id, T entry) Registersentry
toregistry
underid
.static <T> RegistryEntry.Reference<T>
registerReference
(Registry<T> registry, RegistryKey<T> key, T entry) static <T> RegistryEntry.Reference<T>
registerReference
(Registry<T> registry, Identifier id, T entry) stream()
Returns a stream of all values of this registry.Returns a stream of reference registry entries of this registry.Returns a stream of all tag keys known to this registry.Stream<com.mojang.datafixers.util.Pair<TagKey<T>,
RegistryEntryList.Named<T>>> Methods inherited from interface net.minecraft.util.collection.IndexedIterable
get, getOrThrow, size
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
getKey
RegistryKey<? extends Registry<T>> getKey()Returns the registry key that identifies this registry.- Returns:
- the registry key that identifies this registry
- Mappings:
Namespace Name Mixin selector official c
Lhr;c()Lacp;
intermediary method_30517
Lnet/minecraft/class_2378;method_30517()Lnet/minecraft/class_5321;
named getKey
Lnet/minecraft/registry/Registry;getKey()Lnet/minecraft/registry/RegistryKey;
-
getCodec
Returns the codec for serializingT
.- Returns:
- the codec for serializing
T
- Implementation Note:
- This serializes a value using the ID or (if compressed) the raw ID.
- Mappings:
Namespace Name Mixin selector official q
Lhr;q()Lcom/mojang/serialization/Codec;
intermediary method_39673
Lnet/minecraft/class_2378;method_39673()Lcom/mojang/serialization/Codec;
named getCodec
Lnet/minecraft/registry/Registry;getCodec()Lcom/mojang/serialization/Codec;
-
createEntryCodec
Returns the codec for serializing the registry entry ofT
.- Returns:
- the codec for serializing the registry entry of
T
- Implementation Note:
- This serializes a registry entry using the ID.
- Mappings:
Namespace Name Mixin selector official r
Lhr;r()Lcom/mojang/serialization/Codec;
intermediary method_40294
Lnet/minecraft/class_2378;method_40294()Lcom/mojang/serialization/Codec;
named createEntryCodec
Lnet/minecraft/registry/Registry;createEntryCodec()Lcom/mojang/serialization/Codec;
-
keys
- Specified by:
keys
in interfacecom.mojang.serialization.Keyable
- Mappings:
Namespace Name Mixin selector official keys
Lhr;keys(Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream;
intermediary keys
Lnet/minecraft/class_2378;keys(Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream;
named keys
Lnet/minecraft/registry/Registry;keys(Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream;
-
getId
Returns the ID assigned tovalue
, ornull
if it is not registered.- Returns:
- the ID assigned to
value
, ornull
if it is not registered - Mappings:
Namespace Name Mixin selector official b
Lhr;b(Ljava/lang/Object;)Lacq;
intermediary method_10221
Lnet/minecraft/class_2378;method_10221(Ljava/lang/Object;)Lnet/minecraft/class_2960;
named getId
Lnet/minecraft/registry/Registry;getId(Ljava/lang/Object;)Lnet/minecraft/util/Identifier;
-
getKey
Returns the registry key ofvalue
, or an empty optional if it is not registered.- Returns:
- the registry key of
value
, or an empty optional if it is not registered - Mappings:
Namespace Name Mixin selector official c
Lhr;c(Ljava/lang/Object;)Ljava/util/Optional;
intermediary method_29113
Lnet/minecraft/class_2378;method_29113(Ljava/lang/Object;)Ljava/util/Optional;
named getKey
Lnet/minecraft/registry/Registry;getKey(Ljava/lang/Object;)Ljava/util/Optional;
-
getRawId
- Specified by:
getRawId
in interfaceIndexedIterable<T>
- Mappings:
Namespace Name Mixin selector official a
Lhj;a(Ljava/lang/Object;)I
intermediary method_10206
Lnet/minecraft/class_2359;method_10206(Ljava/lang/Object;)I
named getRawId
Lnet/minecraft/util/collection/IndexedIterable;getRawId(Ljava/lang/Object;)I
-
get
Returns the value that is assignedkey
, ornull
if there is none.- Returns:
- the value that is assigned
key
, ornull
if there is none - Mappings:
Namespace Name Mixin selector official a
Lhr;a(Lacp;)Ljava/lang/Object;
intermediary method_29107
Lnet/minecraft/class_2378;method_29107(Lnet/minecraft/class_5321;)Ljava/lang/Object;
named get
Lnet/minecraft/registry/Registry;get(Lnet/minecraft/registry/RegistryKey;)Ljava/lang/Object;
-
get
Returns the value that is assignedid
, ornull
if there is none.- Returns:
- the value that is assigned
id
, ornull
if there is none - Mappings:
Namespace Name Mixin selector official a
Lhr;a(Lacq;)Ljava/lang/Object;
intermediary method_10223
Lnet/minecraft/class_2378;method_10223(Lnet/minecraft/class_2960;)Ljava/lang/Object;
named get
Lnet/minecraft/registry/Registry;get(Lnet/minecraft/util/Identifier;)Ljava/lang/Object;
-
getEntryLifecycle
Gets the lifecycle of a registry entry.- Mappings:
Namespace Name Mixin selector official e
Lhr;e(Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle;
intermediary method_31139
Lnet/minecraft/class_2378;method_31139(Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle;
named getEntryLifecycle
Lnet/minecraft/registry/Registry;getEntryLifecycle(Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle;
-
getLifecycle
com.mojang.serialization.Lifecycle getLifecycle()- Mappings:
Namespace Name Mixin selector official d
Lhr;d()Lcom/mojang/serialization/Lifecycle;
intermediary method_31138
Lnet/minecraft/class_2378;method_31138()Lcom/mojang/serialization/Lifecycle;
named getLifecycle
Lnet/minecraft/registry/Registry;getLifecycle()Lcom/mojang/serialization/Lifecycle;
-
getOrEmpty
Returns the value that is assignedid
, or an empty optional if there is none.- Returns:
- the value that is assigned
id
, or an empty optional if there is none - Mappings:
Namespace Name Mixin selector official b
Lhr;b(Lacq;)Ljava/util/Optional;
intermediary method_17966
Lnet/minecraft/class_2378;method_17966(Lnet/minecraft/class_2960;)Ljava/util/Optional;
named getOrEmpty
Lnet/minecraft/registry/Registry;getOrEmpty(Lnet/minecraft/util/Identifier;)Ljava/util/Optional;
-
getOrEmpty
Returns the value that is assignedkey
, or an empty optional if there is none.- Returns:
- the value that is assigned
key
, or an empty optional if there is none - Mappings:
Namespace Name Mixin selector official d
Lhr;d(Lacp;)Ljava/util/Optional;
intermediary method_31189
Lnet/minecraft/class_2378;method_31189(Lnet/minecraft/class_5321;)Ljava/util/Optional;
named getOrEmpty
Lnet/minecraft/registry/Registry;getOrEmpty(Lnet/minecraft/registry/RegistryKey;)Ljava/util/Optional;
-
getOrThrow
Returns the value that is assignedkey
.- Returns:
- the value that is assigned
key
- Throws:
IllegalStateException
- if there is no value withkey
in the registry- Mappings:
Namespace Name Mixin selector official e
Lhr;e(Lacp;)Ljava/lang/Object;
intermediary method_31140
Lnet/minecraft/class_2378;method_31140(Lnet/minecraft/class_5321;)Ljava/lang/Object;
named getOrThrow
Lnet/minecraft/registry/Registry;getOrThrow(Lnet/minecraft/registry/RegistryKey;)Ljava/lang/Object;
-
getIds
Set<Identifier> getIds()Returns the set of all IDs registered in a registry.- Returns:
- the set of all IDs registered in a registry
- Mappings:
Namespace Name Mixin selector official e
Lhr;e()Ljava/util/Set;
intermediary method_10235
Lnet/minecraft/class_2378;method_10235()Ljava/util/Set;
named getIds
Lnet/minecraft/registry/Registry;getIds()Ljava/util/Set;
-
getEntrySet
Set<Map.Entry<RegistryKey<T>,T>> getEntrySet()Returns the set containingMap.Entry
of the registry keys and values registered in this registry.- Returns:
- the set containing
Map.Entry
of the registry keys and values registered in this registry - Mappings:
Namespace Name Mixin selector official g
Lhr;g()Ljava/util/Set;
intermediary method_29722
Lnet/minecraft/class_2378;method_29722()Ljava/util/Set;
named getEntrySet
Lnet/minecraft/registry/Registry;getEntrySet()Ljava/util/Set;
-
getKeys
Set<RegistryKey<T>> getKeys()Returns the set of all registry keys registered in a registry.- Returns:
- the set of all registry keys registered in a registry
- Mappings:
Namespace Name Mixin selector official f
Lhr;f()Ljava/util/Set;
intermediary method_42021
Lnet/minecraft/class_2378;method_42021()Ljava/util/Set;
named getKeys
Lnet/minecraft/registry/Registry;getKeys()Ljava/util/Set;
-
getRandom
Returns a random registry entry from this registry, or an empty optional if the registry is empty.- Returns:
- a random registry entry from this registry, or an empty optional if the registry is empty
- Mappings:
Namespace Name Mixin selector official a
Lhr;a(Lapf;)Ljava/util/Optional;
intermediary method_10240
Lnet/minecraft/class_2378;method_10240(Lnet/minecraft/class_5819;)Ljava/util/Optional;
named getRandom
Lnet/minecraft/registry/Registry;getRandom(Lnet/minecraft/util/math/random/Random;)Ljava/util/Optional;
-
stream
Returns a stream of all values of this registry.- Returns:
- a stream of all values of this registry
- Mappings:
Namespace Name Mixin selector official s
Lhr;s()Ljava/util/stream/Stream;
intermediary method_10220
Lnet/minecraft/class_2378;method_10220()Ljava/util/stream/Stream;
named stream
Lnet/minecraft/registry/Registry;stream()Ljava/util/stream/Stream;
-
containsId
Returns whetherid
is registered in this registry.- Returns:
- whether
id
is registered in this registry - Mappings:
Namespace Name Mixin selector official c
Lhr;c(Lacq;)Z
intermediary method_10250
Lnet/minecraft/class_2378;method_10250(Lnet/minecraft/class_2960;)Z
named containsId
Lnet/minecraft/registry/Registry;containsId(Lnet/minecraft/util/Identifier;)Z
-
contains
Returns whetherkey
is registered in this registry.- Returns:
- whether
key
is registered in this registry - Mappings:
Namespace Name Mixin selector official c
Lhr;c(Lacp;)Z
intermediary method_35842
Lnet/minecraft/class_2378;method_35842(Lnet/minecraft/class_5321;)Z
named contains
Lnet/minecraft/registry/Registry;contains(Lnet/minecraft/registry/RegistryKey;)Z
-
register
- Mappings:
Namespace Name Mixin selector official a
Lhr;a(Lhr;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
intermediary method_10226
Lnet/minecraft/class_2378;method_10226(Lnet/minecraft/class_2378;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
named register
Lnet/minecraft/registry/Registry;register(Lnet/minecraft/registry/Registry;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
-
register
Registersentry
toregistry
underid
.- Returns:
- the passed
entry
- Mappings:
Namespace Name Mixin selector official a
Lhr;a(Lhr;Lacq;Ljava/lang/Object;)Ljava/lang/Object;
intermediary method_10230
Lnet/minecraft/class_2378;method_10230(Lnet/minecraft/class_2378;Lnet/minecraft/class_2960;Ljava/lang/Object;)Ljava/lang/Object;
named register
Lnet/minecraft/registry/Registry;register(Lnet/minecraft/registry/Registry;Lnet/minecraft/util/Identifier;Ljava/lang/Object;)Ljava/lang/Object;
-
register
Registersentry
toregistry
underkey
.- Returns:
- the passed
entry
- Mappings:
Namespace Name Mixin selector official a
Lhr;a(Lhr;Lacp;Ljava/lang/Object;)Ljava/lang/Object;
intermediary method_39197
Lnet/minecraft/class_2378;method_39197(Lnet/minecraft/class_2378;Lnet/minecraft/class_5321;Ljava/lang/Object;)Ljava/lang/Object;
named register
Lnet/minecraft/registry/Registry;register(Lnet/minecraft/registry/Registry;Lnet/minecraft/registry/RegistryKey;Ljava/lang/Object;)Ljava/lang/Object;
-
registerReference
static <T> RegistryEntry.Reference<T> registerReference(Registry<T> registry, RegistryKey<T> key, T entry) - Mappings:
Namespace Name Mixin selector official b
Lhr;b(Lhr;Lacp;Ljava/lang/Object;)Lhe$c;
intermediary method_47984
Lnet/minecraft/class_2378;method_47984(Lnet/minecraft/class_2378;Lnet/minecraft/class_5321;Ljava/lang/Object;)Lnet/minecraft/class_6880$class_6883;
named registerReference
Lnet/minecraft/registry/Registry;registerReference(Lnet/minecraft/registry/Registry;Lnet/minecraft/registry/RegistryKey;Ljava/lang/Object;)Lnet/minecraft/registry/entry/RegistryEntry$Reference;
-
registerReference
static <T> RegistryEntry.Reference<T> registerReference(Registry<T> registry, Identifier id, T entry) - Mappings:
Namespace Name Mixin selector official b
Lhr;b(Lhr;Lacq;Ljava/lang/Object;)Lhe$c;
intermediary method_47985
Lnet/minecraft/class_2378;method_47985(Lnet/minecraft/class_2378;Lnet/minecraft/class_2960;Ljava/lang/Object;)Lnet/minecraft/class_6880$class_6883;
named registerReference
Lnet/minecraft/registry/Registry;registerReference(Lnet/minecraft/registry/Registry;Lnet/minecraft/util/Identifier;Ljava/lang/Object;)Lnet/minecraft/registry/entry/RegistryEntry$Reference;
-
register
- Mappings:
Namespace Name Mixin selector official a
Lhr;a(Lhr;ILjava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
intermediary method_10231
Lnet/minecraft/class_2378;method_10231(Lnet/minecraft/class_2378;ILjava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
named register
Lnet/minecraft/registry/Registry;register(Lnet/minecraft/registry/Registry;ILjava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
-
freeze
- Mappings:
Namespace Name Mixin selector official l
Lhr;l()Lhr;
intermediary method_40276
Lnet/minecraft/class_2378;method_40276()Lnet/minecraft/class_2378;
named freeze
Lnet/minecraft/registry/Registry;freeze()Lnet/minecraft/registry/Registry;
-
createEntry
- Mappings:
Namespace Name Mixin selector official f
Lhr;f(Ljava/lang/Object;)Lhe$c;
intermediary method_40269
Lnet/minecraft/class_2378;method_40269(Ljava/lang/Object;)Lnet/minecraft/class_6880$class_6883;
named createEntry
Lnet/minecraft/registry/Registry;createEntry(Ljava/lang/Object;)Lnet/minecraft/registry/entry/RegistryEntry$Reference;
-
getEntry
Returns the reference registry entry for the value assignedrawId
, or an empty optional if there is no such value.- Returns:
- the reference registry entry for the value assigned
rawId
, or an empty optional if there is no such value - Mappings:
Namespace Name Mixin selector official c
Lhr;c(I)Ljava/util/Optional;
intermediary method_40265
Lnet/minecraft/class_2378;method_40265(I)Ljava/util/Optional;
named getEntry
Lnet/minecraft/registry/Registry;getEntry(I)Ljava/util/Optional;
-
getEntry
Returns the reference registry entry for the value assignedkey
, or an empty optional if there is no such value.- Returns:
- the reference registry entry for the value assigned
key
, or an empty optional if there is no such value - See Also:
- Mappings:
Namespace Name Mixin selector official b
Lhr;b(Lacp;)Ljava/util/Optional;
intermediary method_40264
Lnet/minecraft/class_2378;method_40264(Lnet/minecraft/class_5321;)Ljava/util/Optional;
named getEntry
Lnet/minecraft/registry/Registry;getEntry(Lnet/minecraft/registry/RegistryKey;)Ljava/util/Optional;
-
getEntry
- Mappings:
Namespace Name Mixin selector official d
Lhr;d(Ljava/lang/Object;)Lhe;
intermediary method_47983
Lnet/minecraft/class_2378;method_47983(Ljava/lang/Object;)Lnet/minecraft/class_6880;
named getEntry
Lnet/minecraft/registry/Registry;getEntry(Ljava/lang/Object;)Lnet/minecraft/registry/entry/RegistryEntry;
-
entryOf
Returns the reference registry entry for the value assignedkey
.- Returns:
- the reference registry entry for the value assigned
key
- Throws:
IllegalStateException
- if there is no value that is assignedkey
- See Also:
- Mappings:
Namespace Name Mixin selector official f
Lhr;f(Lacp;)Lhe$c;
intermediary method_40290
Lnet/minecraft/class_2378;method_40290(Lnet/minecraft/class_5321;)Lnet/minecraft/class_6880$class_6883;
named entryOf
Lnet/minecraft/registry/Registry;entryOf(Lnet/minecraft/registry/RegistryKey;)Lnet/minecraft/registry/entry/RegistryEntry$Reference;
-
streamEntries
Stream<RegistryEntry.Reference<T>> streamEntries()Returns a stream of reference registry entries of this registry.- Returns:
- a stream of reference registry entries of this registry
- Mappings:
Namespace Name Mixin selector official h
Lhr;h()Ljava/util/stream/Stream;
intermediary method_40270
Lnet/minecraft/class_2378;method_40270()Ljava/util/stream/Stream;
named streamEntries
Lnet/minecraft/registry/Registry;streamEntries()Ljava/util/stream/Stream;
-
getEntryList
Returns the registry entry list of values that are assignedtag
, or an empty optional if the tag is not known to the registry.- Returns:
- the registry entry list of values that are assigned
tag
, or an empty optional if the tag is not known to the registry - Mappings:
Namespace Name Mixin selector official b
Lhr;b(Lanl;)Ljava/util/Optional;
intermediary method_40266
Lnet/minecraft/class_2378;method_40266(Lnet/minecraft/class_6862;)Ljava/util/Optional;
named getEntryList
Lnet/minecraft/registry/Registry;getEntryList(Lnet/minecraft/registry/tag/TagKey;)Ljava/util/Optional;
-
iterateEntries
Returns an iterable of values that are assignedtag
, or an empty iterable if the tag is not known to the registry.- Returns:
- an iterable of values that are assigned
tag
, or an empty iterable if the tag is not known to the registry - Mappings:
Namespace Name Mixin selector official c
Lhr;c(Lanl;)Ljava/lang/Iterable;
intermediary method_40286
Lnet/minecraft/class_2378;method_40286(Lnet/minecraft/class_6862;)Ljava/lang/Iterable;
named iterateEntries
Lnet/minecraft/registry/Registry;iterateEntries(Lnet/minecraft/registry/tag/TagKey;)Ljava/lang/Iterable;
-
getOrCreateEntryList
- Mappings:
Namespace Name Mixin selector official a
Lhr;a(Lanl;)Lhi$c;
intermediary method_40260
Lnet/minecraft/class_2378;method_40260(Lnet/minecraft/class_6862;)Lnet/minecraft/class_6885$class_6888;
named getOrCreateEntryList
Lnet/minecraft/registry/Registry;getOrCreateEntryList(Lnet/minecraft/registry/tag/TagKey;)Lnet/minecraft/registry/entry/RegistryEntryList$Named;
-
streamTagsAndEntries
Stream<com.mojang.datafixers.util.Pair<TagKey<T>,RegistryEntryList.Named<T>>> streamTagsAndEntries()- Mappings:
Namespace Name Mixin selector official i
Lhr;i()Ljava/util/stream/Stream;
intermediary method_40272
Lnet/minecraft/class_2378;method_40272()Ljava/util/stream/Stream;
named streamTagsAndEntries
Lnet/minecraft/registry/Registry;streamTagsAndEntries()Ljava/util/stream/Stream;
-
streamTags
Returns a stream of all tag keys known to this registry.- Returns:
- a stream of all tag keys known to this registry
- Mappings:
Namespace Name Mixin selector official j
Lhr;j()Ljava/util/stream/Stream;
intermediary method_40273
Lnet/minecraft/class_2378;method_40273()Ljava/util/stream/Stream;
named streamTags
Lnet/minecraft/registry/Registry;streamTags()Ljava/util/stream/Stream;
-
clearTags
void clearTags()- Mappings:
Namespace Name Mixin selector official m
Lhr;m()V
intermediary method_40278
Lnet/minecraft/class_2378;method_40278()V
named clearTags
Lnet/minecraft/registry/Registry;clearTags()V
-
populateTags
- Mappings:
Namespace Name Mixin selector official a
Lhr;a(Ljava/util/Map;)V
intermediary method_40257
Lnet/minecraft/class_2378;method_40257(Ljava/util/Map;)V
named populateTags
Lnet/minecraft/registry/Registry;populateTags(Ljava/util/Map;)V
-
getIndexedEntries
- Mappings:
Namespace Name Mixin selector official t
Lhr;t()Lhj;
intermediary method_40295
Lnet/minecraft/class_2378;method_40295()Lnet/minecraft/class_2359;
named getIndexedEntries
Lnet/minecraft/registry/Registry;getIndexedEntries()Lnet/minecraft/util/collection/IndexedIterable;
-
getEntryOwner
RegistryEntryOwner<T> getEntryOwner()- Mappings:
Namespace Name Mixin selector official o
Lhr;o()Lhh;
intermediary method_46770
Lnet/minecraft/class_2378;method_46770()Lnet/minecraft/class_7876;
named getEntryOwner
Lnet/minecraft/registry/Registry;getEntryOwner()Lnet/minecraft/registry/entry/RegistryEntryOwner;
-
getReadOnlyWrapper
RegistryWrapper.Impl<T> getReadOnlyWrapper()Returns a registry wrapper that does not mutate the backing registry under any circumstances.- Returns:
- a registry wrapper that does not mutate the backing registry under any circumstances
- See Also:
- Mappings:
Namespace Name Mixin selector official p
Lhr;p()Lhg$c;
intermediary method_46771
Lnet/minecraft/class_2378;method_46771()Lnet/minecraft/class_7225$class_7226;
named getReadOnlyWrapper
Lnet/minecraft/registry/Registry;getReadOnlyWrapper()Lnet/minecraft/registry/RegistryWrapper$Impl;
-
getTagCreatingWrapper
Returns a registry wrapper that creates and stores a new registry entry list when handling an unknown tag key.- Returns:
- a registry wrapper that creates and stores a new registry entry list when handling an unknown tag key
- See Also:
- Mappings:
Namespace Name Mixin selector official u
Lhr;u()Lhg$c;
intermediary method_46772
Lnet/minecraft/class_2378;method_46772()Lnet/minecraft/class_7225$class_7226;
named getTagCreatingWrapper
Lnet/minecraft/registry/Registry;getTagCreatingWrapper()Lnet/minecraft/registry/RegistryWrapper$Impl;
-