Record Class Embed.Field

java.lang.Object
java.lang.Record
io.github._4drian3d.jdwebhooks.Embed.Field
Record Components:
inline - the inline state
name - the field name
value - the value
Enclosing class:
Embed

public static record Embed.Field(@Nullable Boolean inline, @NotNull String name, @NotNull String value) extends Record
An Embed Field
  • Nested Class Summary

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

    Constructors
    Constructor
    Description
    Field(@Nullable Boolean inline, @NotNull String name, @NotNull String value)
    Creates an instance of a Field record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a new Field Builder.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    @Nullable Boolean
    Returns the value of the inline record component.
    @NotNull String
    Returns the value of the name record component.
    final String
    Returns a string representation of this record class.
    @NotNull String
    Returns the value of the value record component.

    Methods inherited from class java.lang.Object

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

    • Field

      public Field(@Nullable @Nullable Boolean inline, @NotNull @NotNull String name, @NotNull @NotNull String value)
      Creates an instance of a Field record class.
      Parameters:
      inline - the value for the inline record component
      name - the value for the name record component
      value - the value for the value record component
  • Method Details

    • builder

      public static Embed.Field.Builder builder()
      Creates a new Field Builder.
      Returns:
      a new Field builder
    • 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.
    • inline

      @Nullable public @Nullable Boolean inline()
      Returns the value of the inline record component.
      Returns:
      the value of the inline record component
    • name

      @NotNull public @NotNull String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • value

      @NotNull public @NotNull String value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component