Record Class IngredientActionType<T extends IngredientAction>
java.lang.Object
java.lang.Record
dev.latvian.mods.kubejs.recipe.ingredientaction.IngredientActionType<T>
public record IngredientActionType<T extends IngredientAction>(net.minecraft.resources.ResourceLocation id, com.mojang.serialization.MapCodec<T extends IngredientAction> codec, net.minecraft.network.codec.StreamCodec<? super net.minecraft.network.RegistryFriendlyByteBuf,T extends IngredientAction> streamCodec)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<IngredientActionType<?>> static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, IngredientActionType<?>> static final Lazy<Map<net.minecraft.resources.ResourceLocation, IngredientActionType<?>>> -
Constructor Summary
ConstructorsConstructorDescriptionIngredientActionType(net.minecraft.resources.ResourceLocation id, com.mojang.serialization.MapCodec<T> codec) IngredientActionType(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 aIngredientActionTyperecord 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
public static final Lazy<Map<net.minecraft.resources.ResourceLocation,IngredientActionType<?>>> TYPES -
CODEC
-
STREAM_CODEC
public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,IngredientActionType<?>> STREAM_CODEC
-
-
Constructor Details
-
IngredientActionType
public IngredientActionType(net.minecraft.resources.ResourceLocation id, com.mojang.serialization.MapCodec<T> codec) -
IngredientActionType
public IngredientActionType(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 aIngredientActionTyperecord 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
-