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

public record TitleMedia(String title, @Nullable String subtitle, Duration fadeIn, Duration stay, Duration fadeOut) extends Record implements FeedbackMedia
  • Nested Class Summary

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

    Constructors
    Constructor
    Description
    TitleMedia(String title, @Nullable String subtitle, Duration fadeIn, Duration stay, Duration fadeOut)
    Creates an instance of a TitleMedia record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    Returns the value of the fadeIn record component.
    Returns the value of the fadeOut record component.
    final int
    Returns a hash code value for this object.
    void
    sendMedia(net.kyori.adventure.audience.Audience audience, net.kyori.adventure.text.minimessage.tag.resolver.TagResolver... resolvers)
    Sends the media to the specified Audience.
    Returns the value of the stay record component.
    @Nullable String
    Returns the value of the subtitle record component.
    Returns the value of the title record component.
    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

    • TitleMedia

      public TitleMedia(String title, @Nullable @Nullable String subtitle, Duration fadeIn, Duration stay, Duration fadeOut)
      Creates an instance of a TitleMedia record class.
      Parameters:
      title - the value for the title record component
      subtitle - the value for the subtitle record component
      fadeIn - the value for the fadeIn record component
      stay - the value for the stay record component
      fadeOut - the value for the fadeOut 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
    • 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.
    • title

      public String title()
      Returns the value of the title record component.
      Returns:
      the value of the title record component
    • subtitle

      @Nullable public @Nullable String subtitle()
      Returns the value of the subtitle record component.
      Returns:
      the value of the subtitle record component
    • fadeIn

      public Duration fadeIn()
      Returns the value of the fadeIn record component.
      Returns:
      the value of the fadeIn record component
    • stay

      public Duration stay()
      Returns the value of the stay record component.
      Returns:
      the value of the stay record component
    • fadeOut

      public Duration fadeOut()
      Returns the value of the fadeOut record component.
      Returns:
      the value of the fadeOut record component