Package net.minecraft.server.world
Record Class BlockEvent
java.lang.Object
java.lang.Record
net.minecraft.server.world.BlockEvent
- Record Components:
pos
-block
-type
-data
-
- Mappings:
Namespace Name official cjb
intermediary net/minecraft/class_1919
named net/minecraft/server/world/BlockEvent
official a
intermediary comp_60
named pos
official b
intermediary comp_61
named block
official c
intermediary comp_62
named type
official d
intermediary comp_63
named data
-
Field Summary
-
Constructor Summary
ConstructorDescriptionBlockEvent
(BlockPos pos, Block block, int type, int data) Creates an instance of aBlockEvent
record class. -
Method Summary
Modifier and TypeMethodDescriptionblock()
Returns the value of theblock
record component.int
data()
Returns the value of thedata
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.pos()
Returns the value of thepos
record component.final String
toString()
Returns a string representation of this record class.int
type()
Returns the value of thetype
record component.
-
Field Details
-
Constructor Details
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
block
Returns the value of theblock
record component.- Returns:
- the value of the
block
record component
-
type
public int type()Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
data
public int data()Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-