Package net.minecraft.world.block
Record Class ChainRestrictedNeighborUpdater.SimpleEntry
java.lang.Object
java.lang.Record
net.minecraft.world.block.ChainRestrictedNeighborUpdater.SimpleEntry
- Record Components:
pos-sourceBlock-orientation-
- All Implemented Interfaces:
ChainRestrictedNeighborUpdater.Entry
- Enclosing class:
ChainRestrictedNeighborUpdater
static record ChainRestrictedNeighborUpdater.SimpleEntry(BlockPos pos, Block sourceBlock, @Nullable WireOrientation orientation)
extends Record
implements ChainRestrictedNeighborUpdater.Entry
- Mappings:
Namespace Name named net/minecraft/world/block/ChainRestrictedNeighborUpdater$SimpleEntryintermediary net/minecraft/class_7159$class_7163official ezc$enamed posintermediary comp_589official anamed sourceBlockintermediary comp_590official bnamed orientationintermediary comp_2973official c
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final @Nullable WireOrientationThe field for theorientationrecord component.private final BlockPosThe field for theposrecord component.private final BlockThe field for thesourceBlockrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionSimpleEntry(BlockPos blockPos, Block block, @Nullable WireOrientation wireOrientation) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theorientationrecord component.pos()Returns the value of theposrecord component.Returns the value of thesourceBlockrecord component.final StringtoString()Returns a string representation of this record class.boolean
-
Field Details
-
pos
The field for theposrecord component. -
sourceBlock
The field for thesourceBlockrecord component. -
orientation
The field for theorientationrecord component.
-
-
Constructor Details
-
SimpleEntry
SimpleEntry(BlockPos blockPos, Block block, @Nullable @Nullable WireOrientation wireOrientation)
-
-
Method Details
-
update
- Specified by:
updatein interfaceChainRestrictedNeighborUpdater.Entry- Mappings:
Namespace Name Mixin selector named updateLnet/minecraft/world/block/ChainRestrictedNeighborUpdater$Entry;update(Lnet/minecraft/world/World;)Zintermediary method_41707Lnet/minecraft/class_7159$class_7162;method_41707(Lnet/minecraft/class_1937;)Zofficial aLezc$c;a(Ldkj;)Z
-
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). -
pos
Returns the value of theposrecord component.- Returns:
- the value of the
posrecord component
-
sourceBlock
Returns the value of thesourceBlockrecord component.- Returns:
- the value of the
sourceBlockrecord component
-
orientation
Returns the value of theorientationrecord component.- Returns:
- the value of the
orientationrecord component
-