Record Class BlueprintJson

java.lang.Object
java.lang.Record
kr.toxicity.model.api.data.blueprint.BlueprintJson
Record Components:
name - the name of the JSON file (without extension)
element - a supplier that provides the JSON content

public record BlueprintJson(@NotNull String name, @NotNull Supplier<com.google.gson.JsonElement> element) extends Record
Represents a JSON file to be generated as part of the resource pack.

This record holds the file name and a supplier for the JSON content.

Since:
1.15.2
  • Constructor Summary

    Constructors
    Constructor
    Description
    BlueprintJson(@NotNull String name, @NotNull Supplier<com.google.gson.JsonElement> element)
    Creates an instance of a BlueprintJson record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull com.google.gson.JsonElement
    Builds and returns the JSON content by invoking the supplier.
    @NotNull Supplier<com.google.gson.JsonElement>
    Returns the value of the element record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    @NotNull String
    Returns the name of the JSON file with a .json extension.
    @NotNull String
    Returns the value of the name record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class Object

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

    • BlueprintJson

      public BlueprintJson(@NotNull @NotNull String name, @NotNull @NotNull Supplier<com.google.gson.JsonElement> element)
      Creates an instance of a BlueprintJson record class.
      Parameters:
      name - the value for the name record component
      element - the value for the element record component
  • Method Details

    • jsonName

      @NotNull public @NotNull String jsonName()
      Returns the name of the JSON file with a .json extension.
      Returns:
      the JSON file name
      Since:
      2.0.1
    • buildJson

      @NotNull public @NotNull com.google.gson.JsonElement buildJson()
      Builds and returns the JSON content by invoking the supplier.
      Returns:
      the generated JSON element
      Since:
      2.0.1
    • 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.
    • name

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

      @NotNull public @NotNull Supplier<com.google.gson.JsonElement> element()
      Returns the value of the element record component.
      Returns:
      the value of the element record component