Interface Registry<T>
- All Superinterfaces:
IndexedIterable<T>
,Iterable<T>
,com.mojang.serialization.Keyable
,RegistryEntryLookup<T>
,RegistryEntryOwner<T>
,RegistryWrapper<T>
,RegistryWrapper.Impl<T>
- 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
invalid reference
DynamicRegistryManager#get
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:
-
invalid reference
#entryOf
invalid reference
#getEntry(RegistryKey)
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.-
invalid reference
#getEntryList
iterateEntries(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 named net/minecraft/registry/Registry
intermediary net/minecraft/class_2378
official kd
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.registry.RegistryEntryLookup
RegistryEntryLookup.RegistryLookup
Nested classes/interfaces inherited from interface net.minecraft.registry.RegistryWrapper
RegistryWrapper.Impl<T>, RegistryWrapper.WrapperLookup
Nested classes/interfaces inherited from interface net.minecraft.registry.RegistryWrapper.Impl
RegistryWrapper.Impl.Delegating<T>
-
Field Summary
Fields inherited from interface net.minecraft.util.collection.IndexedIterable
ABSENT_RAW_ID
-
Method Summary
Modifier and TypeMethodDescriptionboolean
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) 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
(Identifier id) Returns the reference registry entry for the value that is assignedid
, or an empty optional if there is no such value.default com.mojang.serialization.Codec
<RegistryEntry<T>> Returns the codec for serializing the registry entry ofT
.getEntryInfo
(RegistryKey<T> key) 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 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.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.Returns a random registry entry from this registry, or an empty optional if the registry is empty.default Optional
<RegistryEntry<T>> getRandomEntry
(TagKey<T> tag, Random random) Returns a random entry fromtag
, or an emptyOptional
if the tag is empty.int
private com.mojang.serialization.Codec
<RegistryEntry.Reference<T>> default T
getValueOrThrow
(RegistryKey<T> key) Returns the value that is assignedkey
.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) static <T> T
static <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.private com.mojang.serialization.DataResult
<RegistryEntry.Reference<T>> validateReference
(RegistryEntry<T> entry) Methods inherited from interface net.minecraft.util.collection.IndexedIterable
get, getOrThrow, getRawIdOrThrow, size
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
Methods inherited from interface net.minecraft.registry.RegistryEntryLookup
getOptional, getOptional, getOrThrow, getOrThrow
Methods inherited from interface net.minecraft.registry.entry.RegistryEntryOwner
ownerEquals
Methods inherited from interface net.minecraft.registry.RegistryWrapper
getTags, streamEntries, streamKeys, streamTagKeys
Methods inherited from interface net.minecraft.registry.RegistryWrapper.Impl
getLifecycle, withFeatureFilter, withPredicateFilter
-
Method Details
-
getKey
RegistryKey<? extends Registry<T>> getKey()- Specified by:
getKey
in interfaceRegistryWrapper.Impl<T>
- Mappings:
Namespace Name Mixin selector named getKey
Lnet/minecraft/registry/RegistryWrapper$Impl;getKey()Lnet/minecraft/registry/RegistryKey;
intermediary method_46765
Lnet/minecraft/class_7225$class_7226;method_46765()Lnet/minecraft/class_5321;
official g
Ljs$b;g()Laly;
-
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 named getCodec
Lnet/minecraft/registry/Registry;getCodec()Lcom/mojang/serialization/Codec;
intermediary method_39673
Lnet/minecraft/class_2378;method_39673()Lcom/mojang/serialization/Codec;
official q
Lkd;q()Lcom/mojang/serialization/Codec;
-
getEntryCodec
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 named getEntryCodec
Lnet/minecraft/registry/Registry;getEntryCodec()Lcom/mojang/serialization/Codec;
intermediary method_40294
Lnet/minecraft/class_2378;method_40294()Lcom/mojang/serialization/Codec;
official r
Lkd;r()Lcom/mojang/serialization/Codec;
-
getReferenceEntryCodec
- Mappings:
Namespace Name Mixin selector named getReferenceEntryCodec
Lnet/minecraft/registry/Registry;getReferenceEntryCodec()Lcom/mojang/serialization/Codec;
intermediary method_57059
Lnet/minecraft/class_2378;method_57059()Lcom/mojang/serialization/Codec;
official b
Lkd;b()Lcom/mojang/serialization/Codec;
-
validateReference
private com.mojang.serialization.DataResult<RegistryEntry.Reference<T>> validateReference(RegistryEntry<T> entry) - Mappings:
Namespace Name Mixin selector named validateReference
Lnet/minecraft/registry/Registry;validateReference(Lnet/minecraft/registry/entry/RegistryEntry;)Lcom/mojang/serialization/DataResult;
intermediary method_57061
Lnet/minecraft/class_2378;method_57061(Lnet/minecraft/class_6880;)Lcom/mojang/serialization/DataResult;
official a
Lkd;a(Ljq;)Lcom/mojang/serialization/DataResult;
-
keys
- Specified by:
keys
in interfacecom.mojang.serialization.Keyable
- Mappings:
Namespace Name Mixin selector named keys
Lnet/minecraft/registry/Registry;keys(Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream;
intermediary keys
Lnet/minecraft/class_2378;keys(Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream;
official keys
Lkd;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 named getId
Lnet/minecraft/registry/Registry;getId(Ljava/lang/Object;)Lnet/minecraft/util/Identifier;
intermediary method_10221
Lnet/minecraft/class_2378;method_10221(Ljava/lang/Object;)Lnet/minecraft/class_2960;
official b
Lkd;b(Ljava/lang/Object;)Lalz;
-
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 named getKey
Lnet/minecraft/registry/Registry;getKey(Ljava/lang/Object;)Ljava/util/Optional;
intermediary method_29113
Lnet/minecraft/class_2378;method_29113(Ljava/lang/Object;)Ljava/util/Optional;
official d
Lkd;d(Ljava/lang/Object;)Ljava/util/Optional;
-
getRawId
- Specified by:
getRawId
in interfaceIndexedIterable<T>
- Mappings:
Namespace Name Mixin selector named getRawId
Lnet/minecraft/util/collection/IndexedIterable;getRawId(Ljava/lang/Object;)I
intermediary method_10206
Lnet/minecraft/class_2359;method_10206(Ljava/lang/Object;)I
official a
Ljv;a(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 named get
Lnet/minecraft/registry/Registry;get(Lnet/minecraft/registry/RegistryKey;)Ljava/lang/Object;
intermediary method_29107
Lnet/minecraft/class_2378;method_29107(Lnet/minecraft/class_5321;)Ljava/lang/Object;
official c
Lkd;c(Laly;)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 named get
Lnet/minecraft/registry/Registry;get(Lnet/minecraft/util/Identifier;)Ljava/lang/Object;
intermediary method_63535
Lnet/minecraft/class_2378;method_63535(Lnet/minecraft/class_2960;)Ljava/lang/Object;
official a
Lkd;a(Lalz;)Ljava/lang/Object;
-
getEntryInfo
- Mappings:
Namespace Name Mixin selector named getEntryInfo
Lnet/minecraft/registry/Registry;getEntryInfo(Lnet/minecraft/registry/RegistryKey;)Ljava/util/Optional;
intermediary method_57058
Lnet/minecraft/class_2378;method_57058(Lnet/minecraft/class_5321;)Ljava/util/Optional;
official d
Lkd;d(Laly;)Ljava/util/Optional;
-
getOptionalValue
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 named getOptionalValue
Lnet/minecraft/registry/Registry;getOptionalValue(Lnet/minecraft/util/Identifier;)Ljava/util/Optional;
intermediary method_17966
Lnet/minecraft/class_2378;method_17966(Lnet/minecraft/class_2960;)Ljava/util/Optional;
official b
Lkd;b(Lalz;)Ljava/util/Optional;
-
getOptionalValue
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 named getOptionalValue
Lnet/minecraft/registry/Registry;getOptionalValue(Lnet/minecraft/registry/RegistryKey;)Ljava/util/Optional;
intermediary method_31189
Lnet/minecraft/class_2378;method_31189(Lnet/minecraft/class_5321;)Ljava/util/Optional;
official f
Lkd;f(Laly;)Ljava/util/Optional;
-
getDefaultEntry
Optional<RegistryEntry.Reference<T>> getDefaultEntry()- Mappings:
Namespace Name Mixin selector named getDefaultEntry
Lnet/minecraft/registry/Registry;getDefaultEntry()Ljava/util/Optional;
intermediary method_60385
Lnet/minecraft/class_2378;method_60385()Ljava/util/Optional;
official a
Lkd;a()Ljava/util/Optional;
-
getValueOrThrow
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 named getValueOrThrow
Lnet/minecraft/registry/Registry;getValueOrThrow(Lnet/minecraft/registry/RegistryKey;)Ljava/lang/Object;
intermediary method_31140
Lnet/minecraft/class_2378;method_31140(Lnet/minecraft/class_5321;)Ljava/lang/Object;
official g
Lkd;g(Laly;)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 named getIds
Lnet/minecraft/registry/Registry;getIds()Ljava/util/Set;
intermediary method_10235
Lnet/minecraft/class_2378;method_10235()Ljava/util/Set;
official i
Lkd;i()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 named getEntrySet
Lnet/minecraft/registry/Registry;getEntrySet()Ljava/util/Set;
intermediary method_29722
Lnet/minecraft/class_2378;method_29722()Ljava/util/Set;
official k
Lkd;k()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 named getKeys
Lnet/minecraft/registry/Registry;getKeys()Ljava/util/Set;
intermediary method_42021
Lnet/minecraft/class_2378;method_42021()Ljava/util/Set;
official j
Lkd;j()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 named getRandom
Lnet/minecraft/registry/Registry;getRandom(Lnet/minecraft/util/math/random/Random;)Ljava/util/Optional;
intermediary method_10240
Lnet/minecraft/class_2378;method_10240(Lnet/minecraft/class_5819;)Ljava/util/Optional;
official a
Lkd;a(Lbam;)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 named stream
Lnet/minecraft/registry/Registry;stream()Ljava/util/stream/Stream;
intermediary method_10220
Lnet/minecraft/class_2378;method_10220()Ljava/util/stream/Stream;
official s
Lkd;s()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 named containsId
Lnet/minecraft/registry/Registry;containsId(Lnet/minecraft/util/Identifier;)Z
intermediary method_10250
Lnet/minecraft/class_2378;method_10250(Lnet/minecraft/class_2960;)Z
official d
Lkd;d(Lalz;)Z
-
contains
Returns whetherkey
is registered in this registry.- Returns:
- whether
key
is registered in this registry - Mappings:
Namespace Name Mixin selector named contains
Lnet/minecraft/registry/Registry;contains(Lnet/minecraft/registry/RegistryKey;)Z
intermediary method_35842
Lnet/minecraft/class_2378;method_35842(Lnet/minecraft/class_5321;)Z
official e
Lkd;e(Laly;)Z
-
register
- Mappings:
Namespace Name Mixin selector named register
Lnet/minecraft/registry/Registry;register(Lnet/minecraft/registry/Registry;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;
official a
Lkd;a(Lkd;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
-
register
Registersentry
toregistry
underid
.- Returns:
- the passed
entry
- Mappings:
Namespace Name Mixin selector named register
Lnet/minecraft/registry/Registry;register(Lnet/minecraft/registry/Registry;Lnet/minecraft/util/Identifier;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;
official a
Lkd;a(Lkd;Lalz;Ljava/lang/Object;)Ljava/lang/Object;
-
register
Registersentry
toregistry
underkey
.- Returns:
- the passed
entry
- Mappings:
Namespace Name Mixin selector named register
Lnet/minecraft/registry/Registry;register(Lnet/minecraft/registry/Registry;Lnet/minecraft/registry/RegistryKey;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;
official a
Lkd;a(Lkd;Laly;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 named registerReference
Lnet/minecraft/registry/Registry;registerReference(Lnet/minecraft/registry/Registry;Lnet/minecraft/registry/RegistryKey;Ljava/lang/Object;)Lnet/minecraft/registry/entry/RegistryEntry$Reference;
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;
official b
Lkd;b(Lkd;Laly;Ljava/lang/Object;)Ljq$c;
-
registerReference
static <T> RegistryEntry.Reference<T> registerReference(Registry<T> registry, Identifier id, T entry) - Mappings:
Namespace Name Mixin selector named registerReference
Lnet/minecraft/registry/Registry;registerReference(Lnet/minecraft/registry/Registry;Lnet/minecraft/util/Identifier;Ljava/lang/Object;)Lnet/minecraft/registry/entry/RegistryEntry$Reference;
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;
official b
Lkd;b(Lkd;Lalz;Ljava/lang/Object;)Ljq$c;
-
freeze
- Mappings:
Namespace Name Mixin selector named freeze
Lnet/minecraft/registry/Registry;freeze()Lnet/minecraft/registry/Registry;
intermediary method_40276
Lnet/minecraft/class_2378;method_40276()Lnet/minecraft/class_2378;
official n
Lkd;n()Lkd;
-
createEntry
- Mappings:
Namespace Name Mixin selector named createEntry
Lnet/minecraft/registry/Registry;createEntry(Ljava/lang/Object;)Lnet/minecraft/registry/entry/RegistryEntry$Reference;
intermediary method_40269
Lnet/minecraft/class_2378;method_40269(Ljava/lang/Object;)Lnet/minecraft/class_6880$class_6883;
official f
Lkd;f(Ljava/lang/Object;)Ljq$c;
-
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 named getEntry
Lnet/minecraft/registry/Registry;getEntry(I)Ljava/util/Optional;
intermediary method_40265
Lnet/minecraft/class_2378;method_40265(I)Ljava/util/Optional;
official c
Lkd;c(I)Ljava/util/Optional;
-
getEntry
Returns the reference registry entry for the value that is assignedid
, or an empty optional if there is no such value.- Returns:
- the reference registry entry for the value that is assigned
id
, or an empty optional if there is no such value - Mappings:
Namespace Name Mixin selector named getEntry
Lnet/minecraft/registry/Registry;getEntry(Lnet/minecraft/util/Identifier;)Ljava/util/Optional;
intermediary method_10223
Lnet/minecraft/class_2378;method_10223(Lnet/minecraft/class_2960;)Ljava/util/Optional;
official c
Lkd;c(Lalz;)Ljava/util/Optional;
-
getEntry
- Mappings:
Namespace Name Mixin selector named getEntry
Lnet/minecraft/registry/Registry;getEntry(Ljava/lang/Object;)Lnet/minecraft/registry/entry/RegistryEntry;
intermediary method_47983
Lnet/minecraft/class_2378;method_47983(Ljava/lang/Object;)Lnet/minecraft/class_6880;
official e
Lkd;e(Ljava/lang/Object;)Ljq;
-
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 named iterateEntries
Lnet/minecraft/registry/Registry;iterateEntries(Lnet/minecraft/registry/tag/TagKey;)Ljava/lang/Iterable;
intermediary method_40286
Lnet/minecraft/class_2378;method_40286(Lnet/minecraft/class_6862;)Ljava/lang/Iterable;
official c
Lkd;c(Layk;)Ljava/lang/Iterable;
-
getRandomEntry
Returns a random entry fromtag
, or an emptyOptional
if the tag is empty.- Returns:
- a random entry from
tag
, or an emptyOptional
if the tag is empty - Mappings:
Namespace Name Mixin selector named getRandomEntry
Lnet/minecraft/registry/Registry;getRandomEntry(Lnet/minecraft/registry/tag/TagKey;Lnet/minecraft/util/math/random/Random;)Ljava/util/Optional;
intermediary method_56159
Lnet/minecraft/class_2378;method_56159(Lnet/minecraft/class_6862;Lnet/minecraft/class_5819;)Ljava/util/Optional;
official a
Lkd;a(Layk;Lbam;)Ljava/util/Optional;
-
streamTags
Stream<RegistryEntryList.Named<T>> streamTags()- Mappings:
Namespace Name Mixin selector named streamTags
Lnet/minecraft/registry/Registry;streamTags()Ljava/util/stream/Stream;
intermediary method_40272
Lnet/minecraft/class_2378;method_40272()Ljava/util/stream/Stream;
official l
Lkd;l()Ljava/util/stream/Stream;
-
getIndexedEntries
- Mappings:
Namespace Name Mixin selector named getIndexedEntries
Lnet/minecraft/registry/Registry;getIndexedEntries()Lnet/minecraft/util/collection/IndexedIterable;
intermediary method_40295
Lnet/minecraft/class_2378;method_40295()Lnet/minecraft/class_2359;
official t
Lkd;t()Ljv;
-
startTagReload
- Mappings:
Namespace Name Mixin selector named startTagReload
Lnet/minecraft/registry/Registry;startTagReload(Lnet/minecraft/registry/tag/TagGroupLoader$RegistryTags;)Lnet/minecraft/registry/Registry$PendingTagLoad;
intermediary method_62683
Lnet/minecraft/class_2378;method_62683(Lnet/minecraft/class_3503$class_6863;)Lnet/minecraft/class_2378$class_10106;
official a
Lkd;a(Layl$c;)Lkd$a;
-