Record Class ItemFireworkExplosionPredicate.FireworkPredicate
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.ItemFireworkExplosionPredicate.FireworkPredicate
- All Implemented Interfaces:
Predicate<FireworkExplosion>
- Enclosing class:
ItemFireworkExplosionPredicate
public static record ItemFireworkExplosionPredicate.FireworkPredicate(Optional<FireworkExplosion.Shape> shape, Optional<Boolean> twinkle, Optional<Boolean> trail)
extends Record
implements Predicate<FireworkExplosion>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ItemFireworkExplosionPredicate.FireworkPredicate> private final Optional<FireworkExplosion.Shape> The field for theshaperecord component.The field for thetrailrecord component.The field for thetwinklerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionFireworkPredicate(Optional<FireworkExplosion.Shape> shape, Optional<Boolean> twinkle, Optional<Boolean> trail) Creates an instance of aFireworkPredicaterecord class. -
Method Summary
Modifier 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(FireworkExplosion p_340895_) 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
-
shape
The field for theshaperecord component. -
twinkle
The field for thetwinklerecord component. -
trail
The field for thetrailrecord component. -
CODEC
public static final com.mojang.serialization.Codec<ItemFireworkExplosionPredicate.FireworkPredicate> CODEC
-
-
Constructor Details
-
FireworkPredicate
public FireworkPredicate(Optional<FireworkExplosion.Shape> shape, Optional<Boolean> twinkle, Optional<Boolean> trail) Creates an instance of aFireworkPredicaterecord class.- Parameters:
shape- the value for theshaperecord componenttwinkle- the value for thetwinklerecord componenttrail- the value for thetrailrecord component
-
-
Method Details
-
test
- Specified by:
testin interfacePredicate<FireworkExplosion>
-
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 theshaperecord component.- Returns:
- the value of the
shaperecord component
-
twinkle
Returns the value of thetwinklerecord component.- Returns:
- the value of the
twinklerecord component
-
trail
Returns the value of thetrailrecord component.- Returns:
- the value of the
trailrecord component
-