Package net.minecraft.predicate
Record Class NbtPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.NbtPredicate
- Record Components:
nbt
-
- Mappings:
Namespace Name official cm
intermediary net/minecraft/class_2105
named net/minecraft/predicate/NbtPredicate
official b
intermediary comp_1816
named nbt
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<NbtPredicate>
private final NbtCompound
The field for thenbt
record component. -
Constructor Summary
ConstructorDescriptionNbtPredicate
(NbtCompound nbt) Creates an instance of aNbtPredicate
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic NbtCompound
entityToNbt
(Entity entity) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.nbt()
Returns the value of thenbt
record component.boolean
boolean
boolean
test
(@Nullable NbtElement element) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
nbt
The field for thenbt
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lcm;a:Lcom/mojang/serialization/Codec;
intermediary field_45768
Lnet/minecraft/class_2105;field_45768:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/predicate/NbtPredicate;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
NbtPredicate
Creates an instance of aNbtPredicate
record class.- Parameters:
nbt
- the value for thenbt
record component
-
-
Method Details
-
test
- Mappings:
Namespace Name Mixin selector official a
Lcm;a(Lcmy;)Z
intermediary method_9074
Lnet/minecraft/class_2105;method_9074(Lnet/minecraft/class_1799;)Z
named test
Lnet/minecraft/predicate/NbtPredicate;test(Lnet/minecraft/item/ItemStack;)Z
-
test
- Mappings:
Namespace Name Mixin selector official a
Lcm;a(Lblv;)Z
intermediary method_9072
Lnet/minecraft/class_2105;method_9072(Lnet/minecraft/class_1297;)Z
named test
Lnet/minecraft/predicate/NbtPredicate;test(Lnet/minecraft/entity/Entity;)Z
-
test
- Mappings:
Namespace Name Mixin selector official a
Lcm;a(Ltk;)Z
intermediary method_9077
Lnet/minecraft/class_2105;method_9077(Lnet/minecraft/class_2520;)Z
named test
Lnet/minecraft/predicate/NbtPredicate;test(Lnet/minecraft/nbt/NbtElement;)Z
-
entityToNbt
- Mappings:
Namespace Name Mixin selector official b
Lcm;b(Lblv;)Lsn;
intermediary method_9076
Lnet/minecraft/class_2105;method_9076(Lnet/minecraft/class_1297;)Lnet/minecraft/class_2487;
named entityToNbt
Lnet/minecraft/predicate/NbtPredicate;entityToNbt(Lnet/minecraft/entity/Entity;)Lnet/minecraft/nbt/NbtCompound;
-
toString
Returns 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. -
hashCode
public 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. -
equals
Indicates 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)
. -
nbt
Returns the value of thenbt
record component.- Returns:
- the value of the
nbt
record component
-