Package net.minecraft.predicate.item
Record Class FireworkExplosionPredicate.Predicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.FireworkExplosionPredicate.Predicate
- Record Components:
- shape-
- twinkle-
- trail-
- All Implemented Interfaces:
- Predicate<FireworkExplosionComponent>
- Enclosing class:
- FireworkExplosionPredicate
public static record FireworkExplosionPredicate.Predicate(Optional<FireworkExplosionComponent.Type> shape, Optional<Boolean> twinkle, Optional<Boolean> trail)
extends Record
implements Predicate<FireworkExplosionComponent>
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/item/FireworkExplosionPredicate$Predicate- intermediary - net/minecraft/class_9657$class_9658- official - cr$a- named - shape- intermediary - comp_2633- official - b- named - twinkle- intermediary - comp_2634- official - c- named - trail- intermediary - comp_2635- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<FireworkExplosionPredicate.Predicate> private final Optional<FireworkExplosionComponent.Type> The field for theshaperecord component.The field for thetrailrecord component.The field for thetwinklerecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.shape()Returns the value of theshaperecord component.booleantest(FireworkExplosionComponent fireworkExplosionComponent) final StringtoString()Returns a string representation of this record class.trail()Returns the value of thetrailrecord component.twinkle()Returns the value of thetwinklerecord component.
- 
Field Details- 
shapeThe field for theshaperecord component.
- 
twinkleThe field for thetwinklerecord component.
- 
trailThe field for thetrailrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/predicate/item/FireworkExplosionPredicate$Predicate;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_51383- Lnet/minecraft/class_9657$class_9658;field_51383:Lcom/mojang/serialization/Codec;- official - a- Lcr$a;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Predicate
 
- 
- 
Method Details- 
test- Specified by:
- testin interface- Predicate<FireworkExplosionComponent>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/item/FireworkExplosionPredicate$Predicate;test(Lnet/minecraft/component/type/FireworkExplosionComponent;)Z- intermediary - method_59678- Lnet/minecraft/class_9657$class_9658;method_59678(Lnet/minecraft/class_9283;)Z- official - a- Lcr$a;a(Lczf;)Z
 
- 
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. All components in this record class are compared withObjects::equals(Object,Object).
- 
shapeReturns the value of theshaperecord component.- Returns:
- the value of the shaperecord component
 
- 
twinkleReturns the value of thetwinklerecord component.- Returns:
- the value of the twinklerecord component
 
- 
trailReturns the value of thetrailrecord component.- Returns:
- the value of the trailrecord component
 
 
-