Package net.minecraft.loot.function
Record Class CopyNbtLootFunction.Operation
java.lang.Object
java.lang.Record
net.minecraft.loot.function.CopyNbtLootFunction.Operation
- Record Components:
parsedSourcePath
-parsedTargetPath
-operator
-
- Enclosing class:
CopyNbtLootFunction
private static record CopyNbtLootFunction.Operation(NbtPathArgumentType.NbtPath parsedSourcePath, NbtPathArgumentType.NbtPath parsedTargetPath, CopyNbtLootFunction.Operator operator)
extends Record
- Mappings:
Namespace Name named net/minecraft/loot/function/CopyNbtLootFunction$Operation
intermediary net/minecraft/class_3837$class_3839
official erl$b
named parsedSourcePath
intermediary comp_1853
official b
named parsedTargetPath
intermediary comp_1854
official c
named operator
intermediary comp_1855
official d
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<CopyNbtLootFunction.Operation> private final CopyNbtLootFunction.Operator
The field for theoperator
record component.private final NbtPathArgumentType.NbtPath
The field for theparsedSourcePath
record component.private final NbtPathArgumentType.NbtPath
The field for theparsedTargetPath
record component. -
Constructor Summary
ConstructorDescriptionOperation
(NbtPathArgumentType.NbtPath nbtPath, NbtPathArgumentType.NbtPath nbtPath2, CopyNbtLootFunction.Operator operator) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.void
execute
(Supplier<NbtElement> itemNbtGetter, NbtElement sourceEntityNbt) final int
hashCode()
Returns a hash code value for this object.operator()
Returns the value of theoperator
record component.Returns the value of theparsedSourcePath
record component.Returns the value of theparsedTargetPath
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
parsedSourcePath
The field for theparsedSourcePath
record component. -
parsedTargetPath
The field for theparsedTargetPath
record component. -
operator
The field for theoperator
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/loot/function/CopyNbtLootFunction$Operation;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_45820
Lnet/minecraft/class_3837$class_3839;field_45820:Lcom/mojang/serialization/Codec;
official a
Lerl$b;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Operation
Operation(NbtPathArgumentType.NbtPath nbtPath, NbtPathArgumentType.NbtPath nbtPath2, CopyNbtLootFunction.Operator operator) - Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/loot/function/CopyNbtLootFunction$Operation;<init>(Lnet/minecraft/command/argument/NbtPathArgumentType$NbtPath;Lnet/minecraft/command/argument/NbtPathArgumentType$NbtPath;Lnet/minecraft/loot/function/CopyNbtLootFunction$Operator;)V
intermediary <init>
Lnet/minecraft/class_3837$class_3839;<init>(Lnet/minecraft/class_2203$class_2209;Lnet/minecraft/class_2203$class_2209;Lnet/minecraft/class_3837$class_3841;)V
official <init>
Lerl$b;<init>(Lfh$g;Lfh$g;Lerl$c;)V
-
-
Method Details
-
execute
- Mappings:
Namespace Name Mixin selector named execute
Lnet/minecraft/loot/function/CopyNbtLootFunction$Operation;execute(Ljava/util/function/Supplier;Lnet/minecraft/nbt/NbtElement;)V
intermediary method_16860
Lnet/minecraft/class_3837$class_3839;method_16860(Ljava/util/function/Supplier;Lnet/minecraft/class_2520;)V
official a
Lerl$b;a(Ljava/util/function/Supplier;Lvp;)V
-
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)
. -
parsedSourcePath
Returns the value of theparsedSourcePath
record component.- Returns:
- the value of the
parsedSourcePath
record component
-
parsedTargetPath
Returns the value of theparsedTargetPath
record component.- Returns:
- the value of the
parsedTargetPath
record component
-
operator
Returns the value of theoperator
record component.- Returns:
- the value of the
operator
record component
-