Record Class GeyserBaseParticleData
java.lang.Object
java.lang.Record
org.geysermc.mcprotocollib.protocol.data.game.level.particle.GeyserBaseParticleData
- All Implemented Interfaces:
ParticleData
public record GeyserBaseParticleData(int waterBlocks, float burstImpulseBase)
extends Record
implements ParticleData
-
Constructor Summary
ConstructorsConstructorDescriptionGeyserBaseParticleData(int waterBlocks, float burstImpulseBase) Creates an instance of aGeyserBaseParticleDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatReturns the value of theburstImpulseBaserecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.intReturns the value of thewaterBlocksrecord component.
-
Constructor Details
-
GeyserBaseParticleData
public GeyserBaseParticleData(int waterBlocks, float burstImpulseBase) Creates an instance of aGeyserBaseParticleDatarecord class.- Parameters:
waterBlocks- the value for thewaterBlocksrecord componentburstImpulseBase- the value for theburstImpulseBaserecord component
-
-
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. All components in this record class are compared with '=='. -
waterBlocks
public int waterBlocks()Returns the value of thewaterBlocksrecord component.- Returns:
- the value of the
waterBlocksrecord component
-
burstImpulseBase
public float burstImpulseBase()Returns the value of theburstImpulseBaserecord component.- Returns:
- the value of the
burstImpulseBaserecord component
-