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
ConstructorsConstructorDescriptionBlueprintJson(@NotNull String name, @NotNull Supplier<com.google.gson.JsonElement> element) Creates an instance of aBlueprintJsonrecord class. -
Method Summary
Modifier and TypeMethodDescription@NotNull com.google.gson.JsonElementBuilds and returns the JSON content by invoking the supplier.@NotNull Supplier<com.google.gson.JsonElement> element()Returns the value of theelementrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull StringjsonName()Returns the name of the JSON file with a .json extension.@NotNull Stringname()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
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
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. -
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. -
equals
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 withObjects::equals(Object,Object). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
element
Returns the value of theelementrecord component.- Returns:
- the value of the
elementrecord component
-