Package net.minecraft.command.argument
Record Class MessageArgumentType.SignedMessage
java.lang.Object
java.lang.Record
net.minecraft.command.argument.MessageArgumentType.SignedMessage
- Record Components:
signedArgument
-
- Enclosing class:
MessageArgumentType
- Mappings:
Namespace Name official ef$a
intermediary net/minecraft/class_2196$class_7515
named net/minecraft/command/argument/MessageArgumentType$SignedMessage
official a
intermediary comp_954
named signedArgument
-
Field Summary
Modifier and TypeFieldDescriptionprivate final SignedMessage
The field for thesignedArgument
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
decorate
(ServerCommandSource source, Consumer<SignedMessage> callback) final boolean
Indicates whether some other object is "equal to" this one.private CompletableFuture<FilteredMessage>
filterText
(ServerCommandSource source, String text) final int
hashCode()
Returns a hash code value for this object.void
sendHeader
(ServerCommandSource source) Sends the message's header to all players.Returns the value of thesignedArgument
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
signedArgument
The field for thesignedArgument
record component.
-
-
Constructor Details
-
SignedMessage
-
-
Method Details
-
decorate
- Mappings:
Namespace Name Mixin selector official a
Lef$a;a(Ldr;Ljava/util/function/Consumer;)V
intermediary method_44262
Lnet/minecraft/class_2196$class_7515;method_44262(Lnet/minecraft/class_2168;Ljava/util/function/Consumer;)V
named decorate
Lnet/minecraft/command/argument/MessageArgumentType$SignedMessage;decorate(Lnet/minecraft/server/command/ServerCommandSource;Ljava/util/function/Consumer;)V
-
filterText
- Mappings:
Namespace Name Mixin selector official a
Lef$a;a(Ldr;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture;
intermediary method_44808
Lnet/minecraft/class_2196$class_7515;method_44808(Lnet/minecraft/class_2168;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture;
named filterText
Lnet/minecraft/command/argument/MessageArgumentType$SignedMessage;filterText(Lnet/minecraft/server/command/ServerCommandSource;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture;
-
sendHeader
Sends the message's header to all players.This should be called if the message could not be sent due to an exception. See
MessageCommand
for an example.- Mappings:
Namespace Name Mixin selector official a
Lef$a;a(Ldr;)V
intermediary method_44806
Lnet/minecraft/class_2196$class_7515;method_44806(Lnet/minecraft/class_2168;)V
named sendHeader
Lnet/minecraft/command/argument/MessageArgumentType$SignedMessage;sendHeader(Lnet/minecraft/server/command/ServerCommandSource;)V
-
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)
. -
signedArgument
Returns the value of thesignedArgument
record component.- Returns:
- the value of the
signedArgument
record component
-