Package net.minestom.server.item.enchant
Record Class EntityEffect.ReplaceBlock
java.lang.Object
java.lang.Record
net.minestom.server.item.enchant.EntityEffect.ReplaceBlock
- All Implemented Interfaces:
Enchantment.Effect
,EntityEffect
,LocationEffect
- Enclosing interface:
EntityEffect
public static record EntityEffect.ReplaceBlock(net.kyori.adventure.nbt.CompoundBinaryTag content)
extends Record
implements EntityEffect, LocationEffect
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minestom.server.item.enchant.EntityEffect
EntityEffect.AllOf, EntityEffect.ApplyPotionEffect, EntityEffect.DamageEntity, EntityEffect.DamageItem, EntityEffect.Explode, EntityEffect.Ignite, EntityEffect.PlaySound, EntityEffect.ReplaceBlock, EntityEffect.ReplaceDisc, EntityEffect.RunFunction, EntityEffect.SetBlockProperties, EntityEffect.SpawnParticles, EntityEffect.SummonEntity
Nested classes/interfaces inherited from interface net.minestom.server.item.enchant.LocationEffect
LocationEffect.AllOf
-
Field Summary
-
Constructor Summary
ConstructorDescriptionReplaceBlock
(net.kyori.adventure.nbt.CompoundBinaryTag content) Creates an instance of aReplaceBlock
record class. -
Method Summary
Modifier and TypeMethodDescriptionnet.kyori.adventure.nbt.CompoundBinaryTag
content()
Returns the value of thecontent
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.@NotNull BinaryTagSerializer
<EntityEffect.ReplaceBlock> nbtType()
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
NBT_TYPE
-
-
Constructor Details
-
ReplaceBlock
public ReplaceBlock(net.kyori.adventure.nbt.CompoundBinaryTag content) Creates an instance of aReplaceBlock
record class.- Parameters:
content
- the value for thecontent
record component
-
-
Method Details
-
nbtType
- Specified by:
nbtType
in interfaceEntityEffect
- Specified by:
nbtType
in interfaceLocationEffect
-
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)
. -
content
public net.kyori.adventure.nbt.CompoundBinaryTag content()Returns the value of thecontent
record component.- Returns:
- the value of the
content
record component
-