Record Class BeeNestDestroyedTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.criterion.BeeNestDestroyedTrigger.TriggerInstance
- All Implemented Interfaces:
SimpleCriterionTrigger.SimpleInstance, CriterionTriggerInstance
- Enclosing class:
BeeNestDestroyedTrigger
public static record BeeNestDestroyedTrigger.TriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<ItemPredicate> item, MinMaxBounds.Ints beesInside)
extends Record
implements SimpleCriterionTrigger.SimpleInstance
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MinMaxBounds.IntsThe field for thebeesInsiderecord component.The field for theblockrecord component.static final com.mojang.serialization.Codec<BeeNestDestroyedTrigger.TriggerInstance> private final Optional<ItemPredicate> The field for theitemrecord component.private final Optional<ContextAwarePredicate> The field for theplayerrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionTriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<ItemPredicate> item, MinMaxBounds.Ints beesInside) Creates an instance of aTriggerInstancerecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebeesInsiderecord component.block()Returns the value of theblockrecord component.destroyedBeeNest(Block block, ItemPredicate.Builder itemPredicate, MinMaxBounds.Ints numBeesInside) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.item()Returns the value of theitemrecord component.booleanmatches(BlockState state, ItemStack itemStack, int numBeesInside) player()Returns the value of theplayerrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from interface SimpleCriterionTrigger.SimpleInstance
validate
-
Field Details
-
player
The field for theplayerrecord component. -
block
-
item
The field for theitemrecord component. -
beesInside
The field for thebeesInsiderecord component. -
CODEC
-
-
Constructor Details
-
TriggerInstance
public TriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<ItemPredicate> item, MinMaxBounds.Ints beesInside) Creates an instance of aTriggerInstancerecord class.- Parameters:
player- the value for theplayerrecord componentblock- the value for theblockrecord componentitem- the value for theitemrecord componentbeesInside- the value for thebeesInsiderecord component
-
-
Method Details
-
destroyedBeeNest
public static Criterion<BeeNestDestroyedTrigger.TriggerInstance> destroyedBeeNest(Block block, ItemPredicate.Builder itemPredicate, MinMaxBounds.Ints numBeesInside) -
matches
-
toString
-
hashCode
-
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). -
player
Returns the value of theplayerrecord component.- Specified by:
playerin interfaceSimpleCriterionTrigger.SimpleInstance- Returns:
- the value of the
playerrecord component
-
block
-
item
Returns the value of theitemrecord component.- Returns:
- the value of the
itemrecord component
-
beesInside
Returns the value of thebeesInsiderecord component.- Returns:
- the value of the
beesInsiderecord component
-