Package net.minecraft.util
Record Class EncoderCache.Key<A,T>
java.lang.Object
java.lang.Record
net.minecraft.util.EncoderCache.Key<A,T>
- Enclosing class:
EncoderCache
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.Codec
<A> codec()
Returns the value of thecodec
record component.boolean
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code value for this object.com.mojang.serialization.DynamicOps
<T> ops()
Returns the value of theops
record component.com.mojang.serialization.DataResult
<T> resolve()
final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Field Details
-
codec
The field for thecodec
record component. -
value
The field for thevalue
record component. -
ops
The field for theops
record component.
-
-
Constructor Details
-
Key
Creates an instance of aKey
record class.- Parameters:
codec
- the value for thecodec
record componentvalue
- the value for thevalue
record componentops
- the value for theops
record component
-
-
Method Details
-
resolve
-
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)
. -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. -
codec
Returns the value of thecodec
record component.- Returns:
- the value of the
codec
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
ops
Returns the value of theops
record component.- Returns:
- the value of the
ops
record component
-