java.lang.Object
java.lang.Record
com.thewinterframework.configurate.feedback.media.impl.ChatMedia
All Implemented Interfaces:
FeedbackMedia

public record ChatMedia(List<String> messages) extends Record implements FeedbackMedia
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    ChatMedia(String message)
     
    ChatMedia(List<String> messages)
    Creates an instance of a ChatMedia record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    Returns the value of the messages record component.
    List<net.kyori.adventure.text.Component>
    messages(net.kyori.adventure.text.minimessage.tag.resolver.TagResolver... resolvers)
     
    void
    sendMedia(net.kyori.adventure.audience.Audience audience, net.kyori.adventure.text.minimessage.tag.resolver.TagResolver... resolvers)
    Sends the media to the specified Audience.
    final String
    Returns a string representation of this record class.
    Gets the type of media.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ChatMedia

      public ChatMedia(String message)
    • ChatMedia

      public ChatMedia(List<String> messages)
      Creates an instance of a ChatMedia record class.
      Parameters:
      messages - the value for the messages record component
  • Method Details

    • sendMedia

      public void sendMedia(net.kyori.adventure.audience.Audience audience, net.kyori.adventure.text.minimessage.tag.resolver.TagResolver... resolvers)
      Description copied from interface: FeedbackMedia
      Sends the media to the specified Audience.
      Specified by:
      sendMedia in interface FeedbackMedia
      Parameters:
      audience - the audience to send the media to
      resolvers - the tag resolvers to use
    • messages

      public List<net.kyori.adventure.text.Component> messages(net.kyori.adventure.text.minimessage.tag.resolver.TagResolver... resolvers)
    • type

      public MediaType type()
      Description copied from interface: FeedbackMedia
      Gets the type of media.
      Specified by:
      type in interface FeedbackMedia
      Returns:
      the type of media
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • messages

      public List<String> messages()
      Returns the value of the messages record component.
      Returns:
      the value of the messages record component