Record Class SkinDataImpl

java.lang.Object
java.lang.Record
org.geysermc.floodgate.core.skin.SkinDataImpl
All Implemented Interfaces:
org.geysermc.floodgate.api.event.skin.SkinApplyEvent.SkinData

public record SkinDataImpl(String value, String signature) extends Record implements org.geysermc.floodgate.api.event.skin.SkinApplyEvent.SkinData
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final org.geysermc.floodgate.api.event.skin.SkinApplyEvent.SkinData
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    SkinDataImpl(@NonNull String value, @MonotonicNonNull String signature)
    Creates an instance of a SkinDataImpl record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    static org.geysermc.floodgate.api.event.skin.SkinApplyEvent.SkinData
    from(com.google.gson.JsonObject data)
     
    final int
    Returns a hash code value for this object.
    Returns the value of the signature record component.
    final String
    Returns a string representation of this record class.
    Returns the value of the value record component.

    Methods inherited from class java.lang.Object

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

    • DEFAULT_SKIN

      public static final org.geysermc.floodgate.api.event.skin.SkinApplyEvent.SkinData DEFAULT_SKIN
  • Constructor Details

    • SkinDataImpl

      public SkinDataImpl(@NonNull String value, @MonotonicNonNull String signature)
      Creates an instance of a SkinDataImpl record class.
      Parameters:
      value - the value for the value record component
      signature - the value for the signature record component
  • Method Details

    • from

      public static org.geysermc.floodgate.api.event.skin.SkinApplyEvent.SkinData from(com.google.gson.JsonObject data)
    • 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.
    • value

      public String value()
      Returns the value of the value record component.
      Specified by:
      value in interface org.geysermc.floodgate.api.event.skin.SkinApplyEvent.SkinData
      Returns:
      the value of the value record component
    • signature

      public String signature()
      Returns the value of the signature record component.
      Specified by:
      signature in interface org.geysermc.floodgate.api.event.skin.SkinApplyEvent.SkinData
      Returns:
      the value of the signature record component