Record Class CustomRegistryMetaInfo.TypeInfo<T>
java.lang.Object
java.lang.Record
dev.latvian.mods.klib.registry.CustomRegistryMetaInfo.TypeInfo<T>
- Enclosing class:
CustomRegistryMetaInfo<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.intversion()Returns the value of theversionrecord component.
-
Constructor Details
-
TypeInfo
Creates an instance of aTypeInforecord class.- Parameters:
index- the value for theindexrecord componentkey- the value for thekeyrecord componentversion- the value for theversionrecord 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
-
version
public int version()Returns the value of theversionrecord component.- Returns:
- the value of the
versionrecord component
-