Record Class PotDecorations
java.lang.Object
java.lang.Record
net.minestom.server.item.component.PotDecorations
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final @NotNull Materialstatic final PotDecorationsstatic BinaryTagSerializer<PotDecorations> static final NetworkBuffer.Type<PotDecorations> -
Constructor Summary
ConstructorsConstructorDescriptionPotDecorations(@NotNull List<Material> list) PotDecorations(@NotNull Material material) PotDecorations(@NotNull Material back, @NotNull Material left, @NotNull Material right, @NotNull Material front) Creates an instance of aPotDecorationsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionasList()@NotNull Materialback()Returns the value of thebackrecord component.final booleanIndicates whether some other object is "equal to" this one.@NotNull Materialfront()Returns the value of thefrontrecord component.final inthashCode()Returns a hash code value for this object.@NotNull Materialleft()Returns the value of theleftrecord component.@NotNull Materialright()Returns the value of therightrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
DEFAULT_ITEM
-
EMPTY
-
NETWORK_TYPE
-
NBT_TYPE
-
-
Constructor Details
-
PotDecorations
-
PotDecorations
-
PotDecorations
public PotDecorations(@NotNull @NotNull Material back, @NotNull @NotNull Material left, @NotNull @NotNull Material right, @NotNull @NotNull Material front) Creates an instance of aPotDecorationsrecord class.- Parameters:
back- the value for thebackrecord componentleft- the value for theleftrecord componentright- the value for therightrecord componentfront- the value for thefrontrecord component
-
-
Method Details
-
asList
-
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). -
back
Returns the value of thebackrecord component.- Returns:
- the value of the
backrecord component
-
left
Returns the value of theleftrecord component.- Returns:
- the value of the
leftrecord component
-
right
Returns the value of therightrecord component.- Returns:
- the value of the
rightrecord component
-
front
Returns the value of thefrontrecord component.- Returns:
- the value of the
frontrecord component
-