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
-
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
-
BlueprintJson
-
-
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
-
hashCode
-
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
-
element
-