Record Class PotDecorations
java.lang.Object
java.lang.Record
net.minecraft.world.level.block.entity.PotDecorations
-
Field Summary
Modifier and TypeFieldDescriptionThe field for theback
record component.static final com.mojang.serialization.Codec
<PotDecorations> static final PotDecorations
The field for thefront
record component.The field for theleft
record component.The field for theright
record component.static final StreamCodec
<RegistryFriendlyByteBuf, PotDecorations> -
Constructor Summary
ModifierConstructorDescriptionprivate
PotDecorations
(List<Item> p_331996_) PotDecorations
(Optional<Item> back, Optional<Item> left, Optional<Item> right, Optional<Item> front) Creates an instance of aPotDecorations
record class.PotDecorations
(Item p_335624_, Item p_333843_, Item p_334423_, Item p_332271_) -
Method Summary
Modifier and TypeMethodDescriptionback()
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.static PotDecorations
load
(CompoundTag p_334784_) ordered()
right()
Returns the value of theright
record component.save
(CompoundTag p_332345_) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
back
The field for theback
record component. -
left
The field for theleft
record component. -
right
The field for theright
record component. -
front
The field for thefront
record 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 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
-
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 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
-