Record Class SavedData.Factory<T extends SavedData>
java.lang.Object
java.lang.Record
net.minecraft.world.level.saveddata.SavedData.Factory<T>
- Enclosing class:
SavedData
public static record SavedData.Factory<T extends SavedData>(Supplier<T extends SavedData> constructor, BiFunction<CompoundTag,HolderLookup.Provider,T extends SavedData> deserializer, DataFixTypes type)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionThe field for theconstructor
record component.private final BiFunction
<CompoundTag, HolderLookup.Provider, T> The field for thedeserializer
record component.private final DataFixTypes
The field for thetype
record component. -
Constructor Summary
ConstructorDescriptionFactory
(Supplier<T> constructor, BiFunction<CompoundTag, HolderLookup.Provider, T> deserializer, DataFixTypes type) Creates an instance of aFactory
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconstructor
record component.Returns the value of thedeserializer
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Field Details
-
constructor
The field for theconstructor
record component. -
deserializer
The field for thedeserializer
record component. -
type
The field for thetype
record component.
-
-
Constructor Details
-
Factory
public Factory(Supplier<T> constructor, BiFunction<CompoundTag, HolderLookup.Provider, T> deserializer, DataFixTypes type) Creates an instance of aFactory
record class.- Parameters:
constructor
- the value for theconstructor
record componentdeserializer
- the value for thedeserializer
record componenttype
- the value for thetype
record component
-
-
Method Details
-
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)
. -
constructor
Returns the value of theconstructor
record component.- Returns:
- the value of the
constructor
record component
-
deserializer
Returns the value of thedeserializer
record component.- Returns:
- the value of the
deserializer
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-