java.lang.Object
java.lang.Record
net.minestom.server.item.component.PotDecorations
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Material
static final PotDecorations
static final Codec
<PotDecorations> static final NetworkBuffer.Type
<PotDecorations> -
Constructor Summary
ConstructorsConstructorDescriptionPotDecorations
(List<Material> list) PotDecorations
(Material material) PotDecorations
(Material back, Material left, Material right, Material front) Creates an instance of aPotDecorations
record class. -
Method Summary
Modifier and TypeMethodDescriptionasList()
back()
Returns the value of theback
record component.final boolean
Indicates whether some other object is "equal to" this one.front()
Returns the value of thefront
record component.final int
hashCode()
Returns a hash code value for this object.left()
Returns the value of theleft
record component.right()
Returns the value of theright
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
DEFAULT_ITEM
-
EMPTY
-
NETWORK_TYPE
-
NBT_TYPE
-
-
Constructor Details
-
PotDecorations
-
PotDecorations
-
PotDecorations
Creates an instance of aPotDecorations
record class.- Parameters:
back
- the value for theback
record componentleft
- the value for theleft
record componentright
- the value for theright
record componentfront
- the value for thefront
record 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 theback
record component.- Returns:
- the value of the
back
record component
-
left
Returns the value of theleft
record component.- Returns:
- the value of the
left
record component
-
right
Returns the value of theright
record component.- Returns:
- the value of the
right
record component
-
front
Returns the value of thefront
record component.- Returns:
- the value of the
front
record component
-