Record Class BeeNestDestroyedTrigger.TriggerInstance
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.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
Modifier and TypeFieldDescriptionprivate final MinMaxBounds.Ints
The field for thebeesInside
record component.The field for theblock
record component.static final com.mojang.serialization.Codec
<BeeNestDestroyedTrigger.TriggerInstance> private final Optional
<ItemPredicate> The field for theitem
record component.private final Optional
<ContextAwarePredicate> The field for theplayer
record component. -
Constructor Summary
ConstructorDescriptionTriggerInstance
(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<ItemPredicate> item, MinMaxBounds.Ints beesInside) Creates an instance of aTriggerInstance
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebeesInside
record component.block()
Returns the value of theblock
record component.destroyedBeeNest
(Block p_17513_, ItemPredicate.Builder p_17514_, MinMaxBounds.Ints p_17515_) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.item()
Returns the value of theitem
record component.boolean
matches
(BlockState p_146662_, ItemStack p_146663_, int p_146664_) player()
Returns the value of theplayer
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.advancements.critereon.SimpleCriterionTrigger.SimpleInstance
validate
-
Field Details
-
player
The field for theplayer
record component. -
block
The field for theblock
record component. -
item
The field for theitem
record component. -
beesInside
The field for thebeesInside
record component. -
CODEC
-
-
Constructor Details
-
TriggerInstance
public TriggerInstance(Optional<ContextAwarePredicate> player, Optional<Holder<Block>> block, Optional<ItemPredicate> item, MinMaxBounds.Ints beesInside) Creates an instance of aTriggerInstance
record class.- Parameters:
player
- the value for theplayer
record componentblock
- the value for theblock
record componentitem
- the value for theitem
record componentbeesInside
- the value for thebeesInside
record component
-
-
Method Details
-
destroyedBeeNest
public static Criterion<BeeNestDestroyedTrigger.TriggerInstance> destroyedBeeNest(Block p_17513_, ItemPredicate.Builder p_17514_, MinMaxBounds.Ints p_17515_) -
matches
-
player
Returns the value of theplayer
record component.- Specified by:
player
in interfaceSimpleCriterionTrigger.SimpleInstance
- Returns:
- the value of the
player
record component
-
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)
. -
block
Returns the value of theblock
record component.- Returns:
- the value of the
block
record component
-
item
Returns the value of theitem
record component.- Returns:
- the value of the
item
record component
-
beesInside
Returns the value of thebeesInside
record component.- Returns:
- the value of the
beesInside
record component
-