Package net.minecraft.commands.arguments
Record Class ArgumentSignatures
java.lang.Object
java.lang.Record
net.minecraft.commands.arguments.ArgumentSignatures
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordstatic interface -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ArgumentSignaturesprivate final List<ArgumentSignatures.Entry>The field for theentriesrecord component.private static final intprivate static final int -
Constructor Summary
ConstructorsConstructorDescriptionArgumentSignatures(List<ArgumentSignatures.Entry> entries) Creates an instance of aArgumentSignaturesrecord class.ArgumentSignatures(FriendlyByteBuf p_231052_) -
Method Summary
Modifier and TypeMethodDescriptioncollectPlainSignableArguments(PreviewableCommand<?> p_242870_) entries()Returns the value of theentriesrecord component.final booleanIndicates whether some other object is "equal to" this one.private static <T> StringgetSignableText(SignedArgument<T> p_242374_, com.mojang.brigadier.context.ParsedArgument<?, ?> p_242172_) final inthashCode()Returns a hash code value for this object.static booleanhasSignableArguments(PreviewableCommand<?> p_242912_) static ArgumentSignaturessignCommand(PreviewableCommand<?> p_242877_, ArgumentSignatures.Signer p_242891_) final StringtoString()Returns a string representation of this record class.voidwrite(FriendlyByteBuf p_231062_)
-
Field Details
-
entries
The field for theentriesrecord component. -
EMPTY
-
MAX_ARGUMENT_COUNT
private static final int MAX_ARGUMENT_COUNT- See Also:
-
MAX_ARGUMENT_NAME_LENGTH
private static final int MAX_ARGUMENT_NAME_LENGTH- See Also:
-
-
Constructor Details
-
ArgumentSignatures
-
ArgumentSignatures
Creates an instance of aArgumentSignaturesrecord class.- Parameters:
entries- the value for theentriesrecord component
-
-
Method Details
-
get
-
write
-
hasSignableArguments
-
signCommand
public static ArgumentSignatures signCommand(PreviewableCommand<?> p_242877_, ArgumentSignatures.Signer p_242891_) -
collectPlainSignableArguments
public static List<com.mojang.datafixers.util.Pair<String,String>> collectPlainSignableArguments(PreviewableCommand<?> p_242870_) -
getSignableText
private static <T> String getSignableText(SignedArgument<T> p_242374_, com.mojang.brigadier.context.ParsedArgument<?, ?> p_242172_) -
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). -
entries
Returns the value of theentriesrecord component.- Returns:
- the value of the
entriesrecord component
-