Package net.minecraft.command.argument
Record Class SignedArgumentList<S>
java.lang.Object
java.lang.Record
net.minecraft.command.argument.SignedArgumentList<S>
- Record Components:
arguments-
public record SignedArgumentList<S>(List<SignedArgumentList.ParsedArgument<S>> arguments)
extends Record
A list of parsed signed arguments.
- See Also:
- Mappings:
Namespace Name named net/minecraft/command/argument/SignedArgumentListintermediary net/minecraft/class_7644official zfnamed argumentsintermediary comp_974official a
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordA parsed signed argument, also used as the entry ofSignedArgumentList. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<SignedArgumentList.ParsedArgument<S>> The field for theargumentsrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionSignedArgumentList(List<SignedArgumentList.ParsedArgument<S>> arguments) Creates an instance of aSignedArgumentListrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theargumentsrecord component.private static <S> List<SignedArgumentList.ParsedArgument<S>> collectDecoratableArguments(String argumentName, com.mojang.brigadier.context.CommandContextBuilder<S> builder) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static <S> booleanisNotEmpty(com.mojang.brigadier.ParseResults<S> parseResults) static <S> SignedArgumentList<S> of(com.mojang.brigadier.ParseResults<S> parseResults) Returns a new instance of this list fromparseResults.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
arguments
The field for theargumentsrecord component.
-
-
Constructor Details
-
SignedArgumentList
Creates an instance of aSignedArgumentListrecord class.- Parameters:
arguments- the value for theargumentsrecord component
-
-
Method Details
-
isNotEmpty
public static <S> boolean isNotEmpty(com.mojang.brigadier.ParseResults<S> parseResults) - Mappings:
Namespace Name Mixin selector named isNotEmptyLnet/minecraft/command/argument/SignedArgumentList;isNotEmpty(Lcom/mojang/brigadier/ParseResults;)Zintermediary method_58774Lnet/minecraft/class_7644;method_58774(Lcom/mojang/brigadier/ParseResults;)Zofficial aLzf;a(Lcom/mojang/brigadier/ParseResults;)Z
-
of
Returns a new instance of this list fromparseResults.- Returns:
- a new instance of this list from
parseResults - Mappings:
Namespace Name Mixin selector named ofLnet/minecraft/command/argument/SignedArgumentList;of(Lcom/mojang/brigadier/ParseResults;)Lnet/minecraft/command/argument/SignedArgumentList;intermediary method_45043Lnet/minecraft/class_7644;method_45043(Lcom/mojang/brigadier/ParseResults;)Lnet/minecraft/class_7644;official bLzf;b(Lcom/mojang/brigadier/ParseResults;)Lzf;
-
collectDecoratableArguments
private static <S> List<SignedArgumentList.ParsedArgument<S>> collectDecoratableArguments(String argumentName, com.mojang.brigadier.context.CommandContextBuilder<S> builder) - Mappings:
Namespace Name Mixin selector named collectDecoratableArgumentsLnet/minecraft/command/argument/SignedArgumentList;collectDecoratableArguments(Ljava/lang/String;Lcom/mojang/brigadier/context/CommandContextBuilder;)Ljava/util/List;intermediary method_45044Lnet/minecraft/class_7644;method_45044(Ljava/lang/String;Lcom/mojang/brigadier/context/CommandContextBuilder;)Ljava/util/List;official aLzf;a(Ljava/lang/String;Lcom/mojang/brigadier/context/CommandContextBuilder;)Ljava/util/List;
-
get
- Mappings:
Namespace Name Mixin selector named getLnet/minecraft/command/argument/SignedArgumentList;get(Ljava/lang/String;)Lnet/minecraft/command/argument/SignedArgumentList$ParsedArgument;intermediary method_58775Lnet/minecraft/class_7644;method_58775(Ljava/lang/String;)Lnet/minecraft/class_7644$class_7645;official aLzf;a(Ljava/lang/String;)Lzf$a;
-
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). -
arguments
Returns the value of theargumentsrecord component.- Returns:
- the value of the
argumentsrecord component
-