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 intermediary net/minecraft/class_2576official tynamed net/minecraft/text/EntityNbtDataSourceintermediary comp_735official anamed rawSelectorintermediary comp_736official bnamed selector
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final StringThe field for therawSelectorrecord component.private final @Nullable EntitySelectorThe field for theselectorrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionEntityNbtDataSource(String rawPath) EntityNbtDataSource(String rawPath, @Nullable EntitySelector entitySelector) -
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether some other object is "equal to" this one.get(ServerCommandSource source) inthashCode()Returns a hash code value for this object.private static @Nullable EntitySelectorparseSelector(String rawSelector) Returns the value of therawSelectorrecord component.selector()Returns the value of theselectorrecord component.toString()Returns a string representation of this record class.
-
Field Details
-
rawSelector
The field for therawSelectorrecord component. -
selector
The field for theselectorrecord component.
-
-
Constructor Details
-
EntityNbtDataSource
- Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_2576;<init>(Ljava/lang/String;)Vofficial <init>Lty;<init>(Ljava/lang/String;)Vnamed <init>Lnet/minecraft/text/EntityNbtDataSource;<init>(Ljava/lang/String;)V
-
EntityNbtDataSource
- Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_2576;<init>(Ljava/lang/String;Lnet/minecraft/class_2300;)Vofficial <init>Lty;<init>(Ljava/lang/String;Lga;)Vnamed <init>Lnet/minecraft/text/EntityNbtDataSource;<init>(Ljava/lang/String;Lnet/minecraft/command/EntitySelector;)V
-
-
Method Details
-
parseSelector
- Mappings:
Namespace Name Mixin selector intermediary method_10923Lnet/minecraft/class_2576;method_10923(Ljava/lang/String;)Lnet/minecraft/class_2300;official aLty;a(Ljava/lang/String;)Lga;named parseSelectorLnet/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:
getin interfaceNbtDataSource- Throws:
com.mojang.brigadier.exceptions.CommandSyntaxException- Mappings:
Namespace Name Mixin selector intermediary method_10916Lnet/minecraft/class_7419;method_10916(Lnet/minecraft/class_2168;)Ljava/util/stream/Stream;official getDataLtx;getData(Lds;)Ljava/util/stream/Stream;named getLnet/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 therawSelectorrecord component.- Returns:
- the value of the
rawSelectorrecord component
-
selector
Returns the value of theselectorrecord component.- Returns:
- the value of the
selectorrecord component
-