Package net.minecraft.network.message
Record Class ArgumentSignatureDataMap
java.lang.Object
java.lang.Record
net.minecraft.network.message.ArgumentSignatureDataMap
- Record Components:
- entries-
A record holding the signatures for all signable arguments of an executed command.
- See Also:
- Mappings:
- Namespace - Name - named - net/minecraft/network/message/ArgumentSignatureDataMap- intermediary - net/minecraft/class_7450- official - fe- named - entries- intermediary - comp_912- official - b
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic interfaceA functional interface that signs an argument of a command.static final recordAn entry of the signatures map, consisting of the argument's name and signature data.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final ArgumentSignatureDataMapprivate final List<ArgumentSignatureDataMap.Entry> The field for theentriesrecord component.private static final intprivate static final int
- 
Constructor SummaryConstructorsConstructorDescription
- 
Method SummaryModifier and TypeMethodDescriptionentries()Returns the value of theentriesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static ArgumentSignatureDataMapsign(SignedArgumentList<?> arguments, ArgumentSignatureDataMap.ArgumentSigner signer) Returns the signature map withargumentssigned withsigner.final StringtoString()Returns a string representation of this record class.voidwrite(PacketByteBuf buf) 
- 
Field Details- 
entriesThe field for theentriesrecord component.
- 
EMPTY- Mappings:
- Namespace - Name - Mixin selector - named - EMPTY- Lnet/minecraft/network/message/ArgumentSignatureDataMap;EMPTY:Lnet/minecraft/network/message/ArgumentSignatureDataMap;- intermediary - field_39807- Lnet/minecraft/class_7450;field_39807:Lnet/minecraft/class_7450;- official - a- Lfe;a:Lfe;
 
- 
MAX_ARGUMENTSprivate static final int MAX_ARGUMENTS- See Also:
- Mappings:
- Namespace - Name - Mixin selector - named - MAX_ARGUMENTS- Lnet/minecraft/network/message/ArgumentSignatureDataMap;MAX_ARGUMENTS:I- intermediary - field_39418- Lnet/minecraft/class_7450;field_39418:I- official - c- Lfe;c:I
 
- 
MAX_ARGUMENT_NAME_LENGTHprivate static final int MAX_ARGUMENT_NAME_LENGTH- See Also:
- Mappings:
- Namespace - Name - Mixin selector - named - MAX_ARGUMENT_NAME_LENGTH- Lnet/minecraft/network/message/ArgumentSignatureDataMap;MAX_ARGUMENT_NAME_LENGTH:I- intermediary - field_39185- Lnet/minecraft/class_7450;field_39185:I- official - d- Lfe;d:I
 
 
- 
- 
Constructor Details- 
ArgumentSignatureDataMap- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/network/message/ArgumentSignatureDataMap;<init>(Lnet/minecraft/network/PacketByteBuf;)V- intermediary - <init>- Lnet/minecraft/class_7450;<init>(Lnet/minecraft/class_2540;)V- official - <init>- Lfe;<init>(Lvl;)V
 
- 
ArgumentSignatureDataMap
 
- 
- 
Method Details- 
write- Mappings:
- Namespace - Name - Mixin selector - named - write- Lnet/minecraft/network/message/ArgumentSignatureDataMap;write(Lnet/minecraft/network/PacketByteBuf;)V- intermediary - method_43749- Lnet/minecraft/class_7450;method_43749(Lnet/minecraft/class_2540;)V- official - a- Lfe;a(Lvl;)V
 
- 
signpublic static ArgumentSignatureDataMap sign(SignedArgumentList<?> arguments, ArgumentSignatureDataMap.ArgumentSigner signer) Returns the signature map withargumentssigned withsigner.- Returns:
- the signature map with argumentssigned withsigner
- Mappings:
- Namespace - Name - Mixin selector - named - sign- Lnet/minecraft/network/message/ArgumentSignatureDataMap;sign(Lnet/minecraft/command/argument/SignedArgumentList;Lnet/minecraft/network/message/ArgumentSignatureDataMap$ArgumentSigner;)Lnet/minecraft/network/message/ArgumentSignatureDataMap;- intermediary - method_44797- Lnet/minecraft/class_7450;method_44797(Lnet/minecraft/class_7644;Lnet/minecraft/class_7450$class_7600;)Lnet/minecraft/class_7450;- official - a- Lfe;a(Lxh;Lfe$b;)Lfe;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
entriesReturns the value of theentriesrecord component.- Returns:
- the value of the entriesrecord component
 
 
-