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$SimpleEntry
intermediary net/minecraft/class_7159$class_7163
official euy$e
named pos
intermediary comp_589
official a
named sourceBlock
intermediary comp_590
official b
named orientation
intermediary comp_2973
official c
-
Field Summary
Modifier and TypeFieldDescriptionprivate final @Nullable WireOrientation
The field for theorientation
record component.private final BlockPos
The field for thepos
record component.private final Block
The field for thesourceBlock
record component. -
Constructor Summary
ConstructorDescriptionSimpleEntry
(BlockPos blockPos, Block block, @Nullable WireOrientation wireOrientation) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theorientation
record component.pos()
Returns the value of thepos
record component.Returns the value of thesourceBlock
record component.final String
toString()
Returns a string representation of this record class.boolean
-
Field Details
-
pos
The field for thepos
record component. -
sourceBlock
The field for thesourceBlock
record component. -
orientation
The field for theorientation
record component.
-
-
Constructor Details
-
SimpleEntry
SimpleEntry(BlockPos blockPos, Block block, @Nullable @Nullable WireOrientation wireOrientation)
-
-
Method Details
-
update
- Specified by:
update
in interfaceChainRestrictedNeighborUpdater.Entry
- Mappings:
Namespace Name Mixin selector named update
Lnet/minecraft/world/block/ChainRestrictedNeighborUpdater$Entry;update(Lnet/minecraft/world/World;)Z
intermediary method_41707
Lnet/minecraft/class_7159$class_7162;method_41707(Lnet/minecraft/class_1937;)Z
official a
Leuy$c;a(Ldhh;)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 thepos
record component.- Returns:
- the value of the
pos
record component
-
sourceBlock
Returns the value of thesourceBlock
record component.- Returns:
- the value of the
sourceBlock
record component
-
orientation
Returns the value of theorientation
record component.- Returns:
- the value of the
orientation
record component
-