Package net.minecraft.predicate.item
Record Class FireworksPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.FireworksPredicate
- Record Components:
- explosions-
- flightDuration-
- All Implemented Interfaces:
- ComponentSubPredicate<FireworksComponent>,- ItemSubPredicate
public record FireworksPredicate(Optional<CollectionPredicate<FireworkExplosionComponent,FireworkExplosionPredicate.Predicate>> explosions, NumberRange.IntRange flightDuration)
extends Record
implements ComponentSubPredicate<FireworksComponent> 
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/item/FireworksPredicate- intermediary - net/minecraft/class_9659- official - cs- named - explosions- intermediary - comp_2636- official - c- named - flightDuration- intermediary - comp_2637- official - d
- 
Nested Class SummaryNested classes/interfaces inherited from interface net.minecraft.predicate.item.ItemSubPredicateItemSubPredicate.Type<T extends ItemSubPredicate>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<FireworksPredicate> private final Optional<CollectionPredicate<FireworkExplosionComponent, FireworkExplosionPredicate.Predicate>> The field for theexplosionsrecord component.private final NumberRange.IntRangeThe field for theflightDurationrecord component.Fields inherited from interface net.minecraft.predicate.item.ItemSubPredicatePREDICATES_MAP_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionFireworksPredicate(Optional<CollectionPredicate<FireworkExplosionComponent, FireworkExplosionPredicate.Predicate>> optional, NumberRange.IntRange intRange) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexplosionsrecord component.Returns the value of theflightDurationrecord component.final inthashCode()Returns a hash code value for this object.booleantest(ItemStack itemStack, FireworksComponent fireworksComponent) final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.predicate.item.ComponentSubPredicatetest
- 
Field Details- 
explosionsprivate final Optional<CollectionPredicate<FireworkExplosionComponent,FireworkExplosionPredicate.Predicate>> explosionsThe field for theexplosionsrecord component.
- 
flightDurationThe field for theflightDurationrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/predicate/item/FireworksPredicate;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_51384- Lnet/minecraft/class_9659;field_51384:Lcom/mojang/serialization/Codec;- official - a- Lcs;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
FireworksPredicatepublic FireworksPredicate(Optional<CollectionPredicate<FireworkExplosionComponent, FireworkExplosionPredicate.Predicate>> optional, NumberRange.IntRange intRange) 
 
- 
- 
Method Details- 
getComponentType- Specified by:
- getComponentTypein interface- ComponentSubPredicate<FireworksComponent>
- Mappings:
- Namespace - Name - Mixin selector - named - getComponentType- Lnet/minecraft/predicate/item/ComponentSubPredicate;getComponentType()Lnet/minecraft/component/ComponentType;- intermediary - method_58163- Lnet/minecraft/class_9365;method_58163()Lnet/minecraft/class_9331;- official - a- Lea;a()Lku;
 
- 
test- Specified by:
- testin interface- ComponentSubPredicate<FireworksComponent>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/item/FireworksPredicate;test(Lnet/minecraft/item/ItemStack;Lnet/minecraft/component/type/FireworksComponent;)Z- intermediary - method_59681- Lnet/minecraft/class_9659;method_59681(Lnet/minecraft/class_1799;Lnet/minecraft/class_9284;)Z- official - a- Lcs;a(Lcwq;Lczg;)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).
- 
explosionspublic Optional<CollectionPredicate<FireworkExplosionComponent,FireworkExplosionPredicate.Predicate>> explosions()Returns the value of theexplosionsrecord component.- Returns:
- the value of the explosionsrecord component
 
- 
flightDurationReturns the value of theflightDurationrecord component.- Returns:
- the value of the flightDurationrecord component
 
 
-