Package net.kyori.adventure.chat
Interface SignedMessage
- All Superinterfaces:
net.kyori.examination.Examinable
,Identified
A signed chat message.
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
A signature wrapper type. -
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Checks if this message can be deleted viaAudience.deleteMessage(SignedMessage)
.default @NotNull Stream<? extends net.kyori.examination.ExaminableProperty>
default boolean
isSystem()
Checks if this message is a system message.@NotNull String
message()
The plain string message.long
salt()
The salt.@Nullable SignedMessage.Signature
The signature of the message.static @NotNull SignedMessage.Signature
signature
(byte[] signature) Creates a signature wrapper.static @NotNull SignedMessage
system
(@NotNull String message, @Nullable ComponentLike unsignedContent) Creates a systemSignedMessage
.@NotNull Instant
The time that the message was sent.@Nullable Component
The unsigned component content.Methods inherited from interface net.kyori.examination.Examinable
examinableName, examine
Methods inherited from interface net.kyori.adventure.identity.Identified
identity
-
Method Details
-
signature
@Contract(value="_ -> new", pure=true) @NotNull static @NotNull SignedMessage.Signature signature(byte[] signature) Creates a signature wrapper.- Parameters:
signature
- the signature- Returns:
- a new signature
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
system
@Contract(value="_, _ -> new", pure=true) @NotNull static @NotNull SignedMessage system(@NotNull @NotNull String message, @Nullable @Nullable ComponentLike unsignedContent) Creates a systemSignedMessage
.- Parameters:
message
- the messageunsignedContent
- the optional unsigned component content- Returns:
- a new system
SignedMessage
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
timestamp
The time that the message was sent.- Returns:
- the timestamp
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
salt
@Contract(pure=true) long salt()The salt.- Returns:
- the salt
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
signature
The signature of the message.- Returns:
- the signature
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
unsignedContent
The unsigned component content.- Returns:
- the component or null
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
message
The plain string message.- Returns:
- the plain string message
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
isSystem
@Contract(pure=true) default boolean isSystem()Checks if this message is a system message.- Returns:
- true if system
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
canDelete
@Contract(pure=true) default boolean canDelete()Checks if this message can be deleted viaAudience.deleteMessage(SignedMessage)
.- Returns:
- true if supports deletion
- Since:
- 4.12.0
- Since Minecraft:
- 1.19
-
examinableProperties
@NotNull default @NotNull Stream<? extends net.kyori.examination.ExaminableProperty> examinableProperties()- Specified by:
examinableProperties
in interfacenet.kyori.examination.Examinable
-