Record Class PotionContents
java.lang.Object
java.lang.Record
net.minestom.server.item.component.PotionContents
public record PotionContents(@Nullable PotionType potion, @Nullable RGBLike customColor, @NotNull List<CustomPotionEffect> customEffects, @Nullable String customName)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Codec<PotionContents> static final PotionContentsstatic final NetworkBuffer.Type<PotionContents> -
Constructor Summary
ConstructorsConstructorDescriptionPotionContents(@NotNull List<CustomPotionEffect> customEffects) PotionContents(@NotNull CustomPotionEffect customEffect) PotionContents(@NotNull PotionType potion) PotionContents(@NotNull PotionType potion, @NotNull RGBLike customColor) PotionContents(@Nullable PotionType potion, @Nullable RGBLike customColor, @NotNull List<CustomPotionEffect> customEffects) PotionContents(@Nullable PotionType potion, @Nullable RGBLike customColor, @NotNull List<CustomPotionEffect> customEffects, @Nullable String customName) Creates an instance of aPotionContentsrecord class. -
Method Summary
Modifier and TypeMethodDescription@Nullable RGBLikeReturns the value of thecustomColorrecord component.@NotNull List<CustomPotionEffect> Returns the value of thecustomEffectsrecord component.@Nullable StringReturns the value of thecustomNamerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@Nullable PotionTypepotion()Returns the value of thepotionrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
EMPTY
-
NETWORK_TYPE
-
CODEC
-
-
Constructor Details
-
PotionContents
public PotionContents(@Nullable @Nullable PotionType potion, @Nullable @Nullable RGBLike customColor, @NotNull @NotNull List<CustomPotionEffect> customEffects, @Nullable @Nullable String customName) Creates an instance of aPotionContentsrecord class.- Parameters:
potion- the value for thepotionrecord componentcustomColor- the value for thecustomColorrecord componentcustomEffects- the value for thecustomEffectsrecord componentcustomName- the value for thecustomNamerecord component
-
PotionContents
-
PotionContents
-
PotionContents
-
PotionContents
-
PotionContents
public PotionContents(@Nullable @Nullable PotionType potion, @Nullable @Nullable RGBLike customColor, @NotNull @NotNull List<CustomPotionEffect> customEffects)
-
-
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 thepotionrecord component.- Returns:
- the value of the
potionrecord component
-
customColor
Returns the value of thecustomColorrecord component.- Returns:
- the value of the
customColorrecord component
-
customEffects
Returns the value of thecustomEffectsrecord component.- Returns:
- the value of the
customEffectsrecord component
-
customName
Returns the value of thecustomNamerecord component.- Returns:
- the value of the
customNamerecord component
-