Record Class KubeIconType<T extends KubeIcon>
java.lang.Object
java.lang.Record
dev.latvian.mods.kubejs.client.icon.KubeIconType<T>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<KubeIconType<?>> static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, KubeIconType<?>> static final Lazy<Map<net.minecraft.resources.ResourceLocation, KubeIconType<?>>> -
Constructor Summary
ConstructorsConstructorDescriptionKubeIconType(net.minecraft.resources.ResourceLocation id, com.mojang.serialization.MapCodec<T> codec) KubeIconType(net.minecraft.resources.ResourceLocation id, com.mojang.serialization.MapCodec<T> codec, net.minecraft.network.codec.StreamCodec<? super net.minecraft.network.RegistryFriendlyByteBuf, T> streamCodec) Creates an instance of aKubeIconTyperecord class. -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.MapCodec<T> codec()Returns the value of thecodecrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.net.minecraft.resources.ResourceLocationid()Returns the value of theidrecord component.net.minecraft.network.codec.StreamCodec<? super net.minecraft.network.RegistryFriendlyByteBuf, T> Returns the value of thestreamCodecrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
TYPES
-
CODEC
-
STREAM_CODEC
public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,KubeIconType<?>> STREAM_CODEC
-
-
Constructor Details
-
KubeIconType
public KubeIconType(net.minecraft.resources.ResourceLocation id, com.mojang.serialization.MapCodec<T> codec) -
KubeIconType
public KubeIconType(net.minecraft.resources.ResourceLocation id, com.mojang.serialization.MapCodec<T> codec, net.minecraft.network.codec.StreamCodec<? super net.minecraft.network.RegistryFriendlyByteBuf, T> streamCodec) Creates an instance of aKubeIconTyperecord class.- Parameters:
id- the value for theidrecord componentcodec- the value for thecodecrecord componentstreamCodec- the value for thestreamCodecrecord 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). -
id
public net.minecraft.resources.ResourceLocation id()Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
codec
Returns the value of thecodecrecord component.- Returns:
- the value of the
codecrecord component
-
streamCodec
public net.minecraft.network.codec.StreamCodec<? super net.minecraft.network.RegistryFriendlyByteBuf,T> streamCodec()Returns the value of thestreamCodecrecord component.- Returns:
- the value of the
streamCodecrecord component
-