Record Class DialogAction.Custom
java.lang.Object
java.lang.Record
org.geysermc.geyser.session.dialog.action.DialogAction.Custom
- All Implemented Interfaces:
DialogAction
- Enclosing interface:
DialogAction
public static record DialogAction.Custom(net.kyori.adventure.key.Key id, @Nullable org.cloudburstmc.nbt.NbtMap tag)
extends Record
implements DialogAction
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.geysermc.geyser.session.dialog.action.DialogAction
DialogAction.CommandAction, DialogAction.Custom, DialogAction.DynamicCustom, DialogAction.DynamicRunCommand, DialogAction.OpenUrl, DialogAction.RunCommand, DialogAction.ShowDialog -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCustom(net.kyori.adventure.key.Key id, @Nullable org.cloudburstmc.nbt.NbtMap tag) Creates an instance of aCustomrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.net.kyori.adventure.key.Keyid()Returns the value of theidrecord component.voidrun(GeyserSession session, ParsedInputs inputs) @Nullable org.cloudburstmc.nbt.NbtMaptag()Returns the value of thetagrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
TYPE
public static final net.kyori.adventure.key.Key TYPE
-
-
Constructor Details
-
Custom
public Custom(net.kyori.adventure.key.Key id, @Nullable org.cloudburstmc.nbt.NbtMap tag) Creates an instance of aCustomrecord class.- Parameters:
id- the value for theidrecord componenttag- the value for thetagrecord component
-
-
Method Details
-
run
- Specified by:
runin interfaceDialogAction
-
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). -
id
public net.kyori.adventure.key.Key id()Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
tag
public @Nullable org.cloudburstmc.nbt.NbtMap tag()Returns the value of thetagrecord component.- Returns:
- the value of the
tagrecord component
-