Package ml.pluto7073.pdapi.addition
Record Class AdditionHolder
java.lang.Object
java.lang.Record
ml.pluto7073.pdapi.addition.AdditionHolder
public record AdditionHolder(net.minecraft.resources.ResourceLocation id, DrinkAddition value)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, AdditionHolder> -
Constructor Summary
ConstructorsConstructorDescriptionAdditionHolder(net.minecraft.resources.ResourceLocation id, DrinkAddition value) Creates an instance of aAdditionHolderrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether some other object is "equal to" this one.inthashCode()Returns a hash code value for this object.net.minecraft.resources.ResourceLocationid()Returns the value of theidrecord component.toString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Field Details
-
STREAM_CODEC
public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,AdditionHolder> STREAM_CODEC
-
-
Constructor Details
-
AdditionHolder
Creates an instance of aAdditionHolderrecord class.- Parameters:
id- the value for theidrecord componentvalue- the value for thevaluerecord component
-
-
Method Details
-
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. -
id
public net.minecraft.resources.ResourceLocation id()Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-