Package net.minecraft.world
Record Class PersistentState.Type<T extends PersistentState>
java.lang.Object
java.lang.Record
net.minecraft.world.PersistentState.Type<T>
- Record Components:
constructor
-deserializer
-type
-
- Enclosing class:
PersistentState
public static record PersistentState.Type<T extends PersistentState>(Supplier<T extends PersistentState> constructor, Function<NbtCompound,T extends PersistentState> deserializer, DataFixTypes type)
extends Record
- Mappings:
Namespace Name official ebr$a
intermediary net/minecraft/class_18$class_8645
named net/minecraft/world/PersistentState$Type
official a
intermediary comp_1590
named constructor
official b
intermediary comp_1591
named deserializer
official c
intermediary comp_1592
named type
-
Field Summary
Modifier and TypeFieldDescriptionThe field for theconstructor
record component.private final Function<NbtCompound,
T> The field for thedeserializer
record component.private final DataFixTypes
The field for thetype
record component. -
Constructor Summary
ConstructorDescriptionType
(Supplier<T> supplier, Function<NbtCompound, T> function, DataFixTypes dataFixTypes) -
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
-
Type
-
-
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
-