Package net.minecraft.predicate
Record Class TagPredicate<T>
java.lang.Object
java.lang.Record
net.minecraft.predicate.TagPredicate<T>
- Record Components:
- tag-
- expected-
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/TagPredicate- intermediary - net/minecraft/class_8129- official - eh- named - tag- intermediary - comp_1836- official - a- named - expected- intermediary - comp_1837- official - b
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionTagPredicate(TagKey<T> tag, boolean expected) Creates an instance of aTagPredicaterecord class.
- 
Method SummaryModifier and TypeMethodDescriptionstatic <T> com.mojang.serialization.Codec<TagPredicate<T>> createCodec(RegistryKey<? extends Registry<T>> registryRef) final booleanIndicates whether some other object is "equal to" this one.booleanexpected()Returns the value of theexpectedrecord component.static <T> TagPredicate<T> final inthashCode()Returns a hash code value for this object.tag()Returns the value of thetagrecord component.booleantest(RegistryEntry<T> registryEntry) final StringtoString()Returns a string representation of this record class.static <T> TagPredicate<T> unexpected(TagKey<T> tag) 
- 
Field Details
- 
Constructor Details
- 
Method Details- 
createCodecpublic static <T> com.mojang.serialization.Codec<TagPredicate<T>> createCodec(RegistryKey<? extends Registry<T>> registryRef) - Mappings:
- Namespace - Name - Mixin selector - named - createCodec- Lnet/minecraft/predicate/TagPredicate;createCodec(Lnet/minecraft/registry/RegistryKey;)Lcom/mojang/serialization/Codec;- intermediary - method_53245- Lnet/minecraft/class_8129;method_53245(Lnet/minecraft/class_5321;)Lcom/mojang/serialization/Codec;- official - a- Leh;a(Laku;)Lcom/mojang/serialization/Codec;
 
- 
expected- Mappings:
- Namespace - Name - Mixin selector - named - expected- Lnet/minecraft/predicate/TagPredicate;expected(Lnet/minecraft/registry/tag/TagKey;)Lnet/minecraft/predicate/TagPredicate;- intermediary - method_48965- Lnet/minecraft/class_8129;method_48965(Lnet/minecraft/class_6862;)Lnet/minecraft/class_8129;- official - a- Leh;a(Laxf;)Leh;
 
- 
unexpected- Mappings:
- Namespace - Name - Mixin selector - named - unexpected- Lnet/minecraft/predicate/TagPredicate;unexpected(Lnet/minecraft/registry/tag/TagKey;)Lnet/minecraft/predicate/TagPredicate;- intermediary - method_48968- Lnet/minecraft/class_8129;method_48968(Lnet/minecraft/class_6862;)Lnet/minecraft/class_8129;- official - b- Leh;b(Laxf;)Leh;
 
- 
test- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/TagPredicate;test(Lnet/minecraft/registry/entry/RegistryEntry;)Z- intermediary - method_48967- Lnet/minecraft/class_8129;method_48967(Lnet/minecraft/class_6880;)Z- official - a- Leh;a(Ljr;)Z
 
- 
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.
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
tagReturns the value of thetagrecord component.- Returns:
- the value of the tagrecord component
 
- 
expectedpublic boolean expected()Returns the value of theexpectedrecord component.- Returns:
- the value of the expectedrecord component
 
 
-