Package net.minecraft.nbt.scanner
Record Class Tree
java.lang.Object
java.lang.Record
net.minecraft.nbt.scanner.Tree
- Record Components:
depth
-selectedFields
-fieldsToRecurse
-
public record Tree(int depth, Map<String,NbtType<?>> selectedFields, Map<String,Tree> fieldsToRecurse)
extends Record
- Mappings:
Namespace Name official pf
intermediary net/minecraft/class_6842
named net/minecraft/nbt/scanner/Tree
official a
intermediary comp_315
named depth
official b
intermediary comp_323
named selectedFields
official c
intermediary comp_317
named fieldsToRecurse
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final int
The field for thedepth
record component.The field for thefieldsToRecurse
record component.The field for theselectedFields
record component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
int
depth()
Returns the value of thedepth
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of thefieldsToRecurse
record component.final int
hashCode()
Returns a hash code value for this object.static Tree
boolean
method_40061
(NbtType<?> nbtType, String string) Returns the value of theselectedFields
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
depth
private final int depthThe field for thedepth
record component. -
selectedFields
The field for theselectedFields
record component. -
fieldsToRecurse
The field for thefieldsToRecurse
record component.
-
-
Constructor Details
-
Tree
private Tree(int depth) - Mappings:
Namespace Name Mixin selector official <init>
Lpf;<init>(I)V
intermediary <init>
Lnet/minecraft/class_6842;<init>(I)V
named <init>
Lnet/minecraft/nbt/scanner/Tree;<init>(I)V
-
Tree
-
-
Method Details
-
method_40060
- Mappings:
Namespace Name Mixin selector official a
Lpf;a()Lpf;
intermediary method_40060
Lnet/minecraft/class_6842;method_40060()Lnet/minecraft/class_6842;
named method_40060
Lnet/minecraft/nbt/scanner/Tree;method_40060()Lnet/minecraft/nbt/scanner/Tree;
-
add
- Mappings:
Namespace Name Mixin selector official a
Lpf;a(Lpe;)V
intermediary method_39881
Lnet/minecraft/class_6842;method_39881(Lnet/minecraft/class_6843;)V
named add
Lnet/minecraft/nbt/scanner/Tree;add(Lnet/minecraft/nbt/scanner/Query;)V
-
method_40061
- Mappings:
Namespace Name Mixin selector official a
Lpf;a(Lox;Ljava/lang/String;)Z
intermediary method_40061
Lnet/minecraft/class_6842;method_40061(Lnet/minecraft/class_4614;Ljava/lang/String;)Z
named method_40061
Lnet/minecraft/nbt/scanner/Tree;method_40061(Lnet/minecraft/nbt/NbtType;Ljava/lang/String;)Z
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
depth
public int depth()Returns the value of thedepth
record component.- Returns:
- the value of the
depth
record component
-
selectedFields
Returns the value of theselectedFields
record component.- Returns:
- the value of the
selectedFields
record component
-
fieldsToRecurse
Returns the value of thefieldsToRecurse
record component.- Returns:
- the value of the
fieldsToRecurse
record component
-