Record Class PotDecorations
java.lang.Object
java.lang.Record
net.minecraft.world.level.block.entity.PotDecorations
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe field for thebackrecord component.static final com.mojang.serialization.Codec<PotDecorations> static final PotDecorationsThe field for thefrontrecord component.The field for theleftrecord component.The field for therightrecord component.static final StreamCodec<RegistryFriendlyByteBuf, PotDecorations> -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivatePotDecorations(List<Item> p_331996_) PotDecorations(Optional<Item> back, Optional<Item> left, Optional<Item> right, Optional<Item> front) Creates an instance of aPotDecorationsrecord class.PotDecorations(Item p_335624_, Item p_333843_, Item p_334423_, Item p_332271_) -
Method Summary
Modifier and TypeMethodDescriptionback()Returns the value of thebackrecord component.final booleanIndicates whether some other object is "equal to" this one.front()Returns the value of thefrontrecord component.final inthashCode()Returns a hash code value for this object.left()Returns the value of theleftrecord component.static PotDecorationsload(CompoundTag p_334784_) ordered()right()Returns the value of therightrecord component.save(CompoundTag p_332345_) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
back
The field for thebackrecord component. -
left
The field for theleftrecord component. -
right
The field for therightrecord component. -
front
The field for thefrontrecord component. -
EMPTY
-
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
PotDecorations
-
PotDecorations
-
PotDecorations
public PotDecorations(Optional<Item> back, Optional<Item> left, Optional<Item> right, Optional<Item> 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
-
getItem
-
save
-
ordered
-
load
-
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
-