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 cm$a
named shape
intermediary comp_2633
official b
named twinkle
intermediary comp_2634
official c
named trail
intermediary comp_2635
official d
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<FireworkExplosionPredicate.Predicate> private final Optional
<FireworkExplosionComponent.Type> The field for theshape
record component.The field for thetrail
record component.The field for thetwinkle
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.shape()
Returns the value of theshape
record component.boolean
test
(FireworkExplosionComponent fireworkExplosionComponent) final String
toString()
Returns a string representation of this record class.trail()
Returns the value of thetrail
record component.twinkle()
Returns the value of thetwinkle
record component.
-
Field Details
-
shape
The field for theshape
record component. -
twinkle
The field for thetwinkle
record component. -
trail
The field for thetrail
record 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
Lcm$a;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Predicate
-
-
Method Details
-
test
- Specified by:
test
in interfacePredicate<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
Lcm$a;a(Lcxk;)Z
-
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)
. -
shape
Returns the value of theshape
record component.- Returns:
- the value of the
shape
record component
-
twinkle
Returns the value of thetwinkle
record component.- Returns:
- the value of the
twinkle
record component
-
trail
Returns the value of thetrail
record component.- Returns:
- the value of the
trail
record component
-