Package net.minecraft.text
Record Class EntityNbtDataSource
java.lang.Object
java.lang.Record
net.minecraft.text.EntityNbtDataSource
- Record Components:
rawSelector
-selector
-
- All Implemented Interfaces:
NbtDataSource
public record EntityNbtDataSource(String rawSelector, @Nullable EntitySelector selector)
extends Record
implements NbtDataSource
- Mappings:
Namespace Name official ty
intermediary net/minecraft/class_2576
named net/minecraft/text/EntityNbtDataSource
official a
intermediary comp_735
named rawSelector
official b
intermediary comp_736
named selector
-
Field Summary
Modifier and TypeFieldDescriptionprivate final String
The field for therawSelector
record component.private final @Nullable EntitySelector
The field for theselector
record component. -
Constructor Summary
ConstructorDescriptionEntityNbtDataSource
(String rawPath) EntityNbtDataSource
(String rawPath, @Nullable EntitySelector entitySelector) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates whether some other object is "equal to" this one.get
(ServerCommandSource source) int
hashCode()
Returns a hash code value for this object.private static @Nullable EntitySelector
parseSelector
(String rawSelector) Returns the value of therawSelector
record component.selector()
Returns the value of theselector
record component.toString()
Returns a string representation of this record class.
-
Field Details
-
rawSelector
The field for therawSelector
record component. -
selector
The field for theselector
record component.
-
-
Constructor Details
-
EntityNbtDataSource
- Mappings:
Namespace Name Mixin selector official <init>
Lty;<init>(Ljava/lang/String;)V
intermediary <init>
Lnet/minecraft/class_2576;<init>(Ljava/lang/String;)V
named <init>
Lnet/minecraft/text/EntityNbtDataSource;<init>(Ljava/lang/String;)V
-
EntityNbtDataSource
- Mappings:
Namespace Name Mixin selector official <init>
Lty;<init>(Ljava/lang/String;Lga;)V
intermediary <init>
Lnet/minecraft/class_2576;<init>(Ljava/lang/String;Lnet/minecraft/class_2300;)V
named <init>
Lnet/minecraft/text/EntityNbtDataSource;<init>(Ljava/lang/String;Lnet/minecraft/command/EntitySelector;)V
-
-
Method Details
-
parseSelector
- Mappings:
Namespace Name Mixin selector official a
Lty;a(Ljava/lang/String;)Lga;
intermediary method_10923
Lnet/minecraft/class_2576;method_10923(Ljava/lang/String;)Lnet/minecraft/class_2300;
named parseSelector
Lnet/minecraft/text/EntityNbtDataSource;parseSelector(Ljava/lang/String;)Lnet/minecraft/command/EntitySelector;
-
get
public Stream<NbtCompound> get(ServerCommandSource source) throws com.mojang.brigadier.exceptions.CommandSyntaxException - Specified by:
get
in interfaceNbtDataSource
- Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException
- Mappings:
Namespace Name Mixin selector official getData
Ltx;getData(Lds;)Ljava/util/stream/Stream;
intermediary method_10916
Lnet/minecraft/class_7419;method_10916(Lnet/minecraft/class_2168;)Ljava/util/stream/Stream;
named get
Lnet/minecraft/text/NbtDataSource;get(Lnet/minecraft/server/command/ServerCommandSource;)Ljava/util/stream/Stream;
-
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. -
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)
. -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
rawSelector
Returns the value of therawSelector
record component.- Returns:
- the value of the
rawSelector
record component
-
selector
Returns the value of theselector
record component.- Returns:
- the value of the
selector
record component
-