Package ml.pluto7073.pdapi.specialty
Record Class SpecialtyDrinkHolder
java.lang.Object
java.lang.Record
ml.pluto7073.pdapi.specialty.SpecialtyDrinkHolder
public record SpecialtyDrinkHolder(net.minecraft.resources.ResourceLocation id, SpecialtyDrink value)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, SpecialtyDrinkHolder> -
Constructor Summary
ConstructorsConstructorDescriptionSpecialtyDrinkHolder(net.minecraft.resources.ResourceLocation id, SpecialtyDrink value) Creates an instance of aSpecialtyDrinkHolderrecord 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,SpecialtyDrinkHolder> STREAM_CODEC
-
-
Constructor Details
-
SpecialtyDrinkHolder
Creates an instance of aSpecialtyDrinkHolderrecord 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
-