Record Class CustomRegistryValueInfo.ValueInfo<T>
java.lang.Object
java.lang.Record
dev.latvian.mods.klib.registry.CustomRegistryValueInfo.ValueInfo<T>
- Enclosing class:
CustomRegistryValueInfo<T>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intindex()Returns the value of theindexrecord component.net.minecraft.resources.ResourceKey<T> key()Returns the value of thekeyrecord component.final StringtoString()Returns a string representation of this record class.byte[]value()Returns the value of thevaluerecord component.
-
Constructor Details
-
ValueInfo
Creates an instance of aValueInforecord class.- Parameters:
index- the value for theindexrecord componentkey- the value for thekeyrecord componentvalue- the value for thevaluerecord component
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
index
public int index()Returns the value of theindexrecord component.- Returns:
- the value of the
indexrecord component
-
key
Returns the value of thekeyrecord component.- Returns:
- the value of the
keyrecord component
-
value
public byte[] value()Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-