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 - clr- 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 SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionBlockEvent(BlockPos pos, Block block, int type, int data) Creates an instance of aBlockEventrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionblock()Returns the value of theblockrecord component.intdata()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.pos()Returns the value of theposrecord component.final StringtoString()Returns a string representation of this record class.inttype()Returns the value of thetyperecord component.
- 
Field Details
- 
Constructor Details
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
posReturns the value of theposrecord component.- Returns:
- the value of the posrecord component
 
- 
blockReturns the value of theblockrecord component.- Returns:
- the value of the blockrecord component
 
- 
typepublic int type()Returns the value of thetyperecord component.- Returns:
- the value of the typerecord component
 
- 
datapublic int data()Returns the value of thedatarecord component.- Returns:
- the value of the datarecord component
 
 
-