Record Class PotionContents
java.lang.Object
java.lang.Record
eu.sculkpowered.server.container.item.data.PotionContents
public record PotionContents(@Nullable PotionType potion, @Nullable RGBLike color, @NotNull List<CustomPotionEffect> customEffects)
extends Record
-
Constructor Summary
ConstructorDescriptionPotionContents
(@Nullable PotionType potion, @Nullable RGBLike color, @NotNull List<CustomPotionEffect> customEffects) Creates an instance of aPotionContents
record class. -
Method Summary
Modifier and TypeMethodDescription@Nullable RGBLike
color()
Returns the value of thecolor
record component.@NotNull List
<CustomPotionEffect> Returns the value of thecustomEffects
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@Nullable PotionType
potion()
Returns the value of thepotion
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PotionContents
public PotionContents(@Nullable @Nullable PotionType potion, @Nullable @Nullable RGBLike color, @NotNull @NotNull List<CustomPotionEffect> customEffects) Creates an instance of aPotionContents
record class.- Parameters:
potion
- the value for thepotion
record componentcolor
- the value for thecolor
record componentcustomEffects
- the value for thecustomEffects
record 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)
. -
potion
Returns the value of thepotion
record component.- Returns:
- the value of the
potion
record component
-
color
Returns the value of thecolor
record component.- Returns:
- the value of the
color
record component
-
customEffects
Returns the value of thecustomEffects
record component.- Returns:
- the value of the
customEffects
record component
-