Package net.minecraft.registry.entry
Record Class RegistryEntry.Direct<T>
java.lang.Object
java.lang.Record
net.minecraft.registry.entry.RegistryEntry.Direct<T>
- Record Components:
- value-
- All Implemented Interfaces:
- RegistryEntry<T>
- Enclosing interface:
- RegistryEntry<T>
A direct registry entry holds the value directly. The value does not have to be
 registered in a registry. Therefore, they receive no ID or registry key, and they
 cannot be tagged.
 
This is most often used in data packs to inline one-time use values directly.
- Mappings:
- Namespace - Name - named - net/minecraft/registry/entry/RegistryEntry$Direct- intermediary - net/minecraft/class_6880$class_6881- official - jr$a- named - value- intermediary - comp_349- official - a
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.registry.entry.RegistryEntryRegistryEntry.Direct<T>, RegistryEntry.Reference<T>, RegistryEntry.Type
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.getKey()Returns the registry key of this entry, or an empty optional if this is a direct entry.com.mojang.datafixers.util.Either<RegistryKey<T>, T> Returns the object that identifies this registry key.getType()Returns the type (direct or reference) of this registry entry.final inthashCode()Returns a hash code value for this object.booleanbooleanReturns whether this entry is intag.booleanmatches(Predicate<RegistryKey<T>> predicate) Returns whether this entry's key matchespredicate.booleanmatches(RegistryEntry<T> entry) booleanmatchesId(Identifier id) Returns whether the ID of this entry isid.booleanmatchesKey(RegistryKey<T> key) Returns whether the registry key of this entry iskey.booleanownerEquals(RegistryEntryOwner<T> owner) Returns a stream of the tags of this entry, or an empty stream if this is a direct entry.toString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.registry.entry.RegistryEntrygetIdAsString
- 
Field Details- 
valueThe field for thevaluerecord component.
 
- 
- 
Constructor Details- 
Direct
 
- 
- 
Method Details- 
hasKeyAndValuepublic boolean hasKeyAndValue()- Specified by:
- hasKeyAndValuein interface- RegistryEntry<T>
- Mappings:
- Namespace - Name - Mixin selector - named - hasKeyAndValue- Lnet/minecraft/registry/entry/RegistryEntry;hasKeyAndValue()Z- intermediary - method_40227- Lnet/minecraft/class_6880;method_40227()Z- official - b- Ljr;b()Z
 
- 
matchesIdReturns whether the ID of this entry isid.This always returns falsefor direct entries.- Specified by:
- matchesIdin interface- RegistryEntry<T>
- Returns:
- whether the ID of this entry is id
- Mappings:
- Namespace - Name - Mixin selector - named - matchesId- Lnet/minecraft/registry/entry/RegistryEntry;matchesId(Lnet/minecraft/util/Identifier;)Z- intermediary - method_40226- Lnet/minecraft/class_6880;method_40226(Lnet/minecraft/class_2960;)Z- official - a- Ljr;a(Lakv;)Z
 
- 
matchesKeyReturns whether the registry key of this entry iskey.This always returns falsefor direct entries.- Specified by:
- matchesKeyin interface- RegistryEntry<T>
- Returns:
- whether the registry key of this entry is key
- Mappings:
- Namespace - Name - Mixin selector - named - matchesKey- Lnet/minecraft/registry/entry/RegistryEntry;matchesKey(Lnet/minecraft/registry/RegistryKey;)Z- intermediary - method_40225- Lnet/minecraft/class_6880;method_40225(Lnet/minecraft/class_5321;)Z- official - a- Ljr;a(Laku;)Z
 
- 
isInReturns whether this entry is intag.This always returns falsefor direct entries, since tags are managed by a registry.- Specified by:
- isInin interface- RegistryEntry<T>
- Returns:
- whether this entry is in tag
- Mappings:
- Namespace - Name - Mixin selector - named - isIn- Lnet/minecraft/registry/entry/RegistryEntry;isIn(Lnet/minecraft/registry/tag/TagKey;)Z- intermediary - method_40220- Lnet/minecraft/class_6880;method_40220(Lnet/minecraft/class_6862;)Z- official - a- Ljr;a(Laxf;)Z
 
- 
matches- Specified by:
- matchesin interface- RegistryEntry<T>
- Mappings:
- Namespace - Name - Mixin selector - named - matches- Lnet/minecraft/registry/entry/RegistryEntry;matches(Lnet/minecraft/registry/entry/RegistryEntry;)Z- intermediary - method_55838- Lnet/minecraft/class_6880;method_55838(Lnet/minecraft/class_6880;)Z- official - a- Ljr;a(Ljr;)Z
 
- 
matchesReturns whether this entry's key matchespredicate.This always returns falsefor direct entries.- Specified by:
- matchesin interface- RegistryEntry<T>
- Returns:
- whether this entry's key matches predicate
- Mappings:
- Namespace - Name - Mixin selector - named - matches- Lnet/minecraft/registry/entry/RegistryEntry;matches(Ljava/util/function/Predicate;)Z- intermediary - method_40224- Lnet/minecraft/class_6880;method_40224(Ljava/util/function/Predicate;)Z- official - a- Ljr;a(Ljava/util/function/Predicate;)Z
 
- 
getKeyOrValueReturns the object that identifies this registry key.For direct entries, this is the held value, and for reference entries, this is the key of the entry. - Specified by:
- getKeyOrValuein interface- RegistryEntry<T>
- Returns:
- the object that identifies this registry key
- Mappings:
- Namespace - Name - Mixin selector - named - getKeyOrValue- Lnet/minecraft/registry/entry/RegistryEntry;getKeyOrValue()Lcom/mojang/datafixers/util/Either;- intermediary - method_40229- Lnet/minecraft/class_6880;method_40229()Lcom/mojang/datafixers/util/Either;- official - d- Ljr;d()Lcom/mojang/datafixers/util/Either;
 
- 
getKeyReturns the registry key of this entry, or an empty optional if this is a direct entry.- Specified by:
- getKeyin interface- RegistryEntry<T>
- Returns:
- the registry key of this entry, or an empty optional if this is a direct entry
- Mappings:
- Namespace - Name - Mixin selector - named - getKey- Lnet/minecraft/registry/entry/RegistryEntry;getKey()Ljava/util/Optional;- intermediary - method_40230- Lnet/minecraft/class_6880;method_40230()Ljava/util/Optional;- official - e- Ljr;e()Ljava/util/Optional;
 
- 
getTypeReturns the type (direct or reference) of this registry entry.This is different from the types of reference registry entries, i.e. stand-alone or intrusive. - Specified by:
- getTypein interface- RegistryEntry<T>
- Returns:
- the type (direct or reference) of this registry entry
- Mappings:
- Namespace - Name - Mixin selector - named - getType- Lnet/minecraft/registry/entry/RegistryEntry;getType()Lnet/minecraft/registry/entry/RegistryEntry$Type;- intermediary - method_40231- Lnet/minecraft/class_6880;method_40231()Lnet/minecraft/class_6880$class_6882;- official - f- Ljr;f()Ljr$b;
 
- 
toStringReturns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
- 
ownerEquals- Specified by:
- ownerEqualsin interface- RegistryEntry<T>
- Mappings:
- Namespace - Name - Mixin selector - named - ownerEquals- Lnet/minecraft/registry/entry/RegistryEntry;ownerEquals(Lnet/minecraft/registry/entry/RegistryEntryOwner;)Z- intermediary - method_46745- Lnet/minecraft/class_6880;method_46745(Lnet/minecraft/class_7876;)Z- official - a- Ljr;a(Lju;)Z
 
- 
streamTagsReturns a stream of the tags of this entry, or an empty stream if this is a direct entry.- Specified by:
- streamTagsin interface- RegistryEntry<T>
- Returns:
- a stream of the tags of this entry, or an empty stream if this is a direct entry
- Mappings:
- Namespace - Name - Mixin selector - named - streamTags- Lnet/minecraft/registry/entry/RegistryEntry;streamTags()Ljava/util/stream/Stream;- intermediary - method_40228- Lnet/minecraft/class_6880;method_40228()Ljava/util/stream/Stream;- official - c- Ljr;c()Ljava/util/stream/Stream;
 
- 
hashCodepublic final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object).
- 
valueReturns the value of thevaluerecord component.- Specified by:
- valuein interface- RegistryEntry<T>
- Returns:
- the value of the valuerecord component
 
 
-