Package net.minecraft.predicate.item
Record Class DamagePredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.DamagePredicate
- Record Components:
durability-damage-
- All Implemented Interfaces:
ComponentPredicate
public record DamagePredicate(NumberRange.IntRange durability, NumberRange.IntRange damage)
extends Record
implements ComponentPredicate
- Mappings:
Namespace Name named net/minecraft/predicate/item/DamagePredicateintermediary net/minecraft/class_9355official ktnamed durabilityintermediary comp_2459official enamed damageintermediary comp_2460official f
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.predicate.component.ComponentPredicate
ComponentPredicate.Type<T extends ComponentPredicate>, ComponentPredicate.Typed<T extends ComponentPredicate> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<DamagePredicate> private final NumberRange.IntRangeThe field for thedamagerecord component.private final NumberRange.IntRangeThe field for thedurabilityrecord component.Fields inherited from interface net.minecraft.predicate.component.ComponentPredicate
PREDICATES_MAP_CODEC, PREDICATES_MAP_PACKET_CODEC, SINGLE_PREDICATE_PACKET_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionDamagePredicate(NumberRange.IntRange intRange, NumberRange.IntRange intRange2) -
Method Summary
Modifier and TypeMethodDescriptiondamage()Returns the value of thedamagerecord component.Returns the value of thedurabilityrecord component.static DamagePredicatedurability(NumberRange.IntRange durability) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleantest(ComponentsAccess components) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
durability
The field for thedurabilityrecord component. -
damage
The field for thedamagerecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/predicate/item/DamagePredicate;CODEC:Lcom/mojang/serialization/Codec;intermediary field_49798Lnet/minecraft/class_9355;field_49798:Lcom/mojang/serialization/Codec;official aLkt;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
DamagePredicate
-
-
Method Details
-
test
- Specified by:
testin interfaceComponentPredicate- Mappings:
Namespace Name Mixin selector named testLnet/minecraft/predicate/component/ComponentPredicate;test(Lnet/minecraft/component/ComponentsAccess;)Zintermediary method_58161Lnet/minecraft/class_9360;method_58161(Lnet/minecraft/class_9473;)Zofficial aLku;a(Lkg;)Z
-
durability
- Mappings:
Namespace Name Mixin selector named durabilityLnet/minecraft/predicate/item/DamagePredicate;durability(Lnet/minecraft/predicate/NumberRange$IntRange;)Lnet/minecraft/predicate/item/DamagePredicate;intermediary method_58165Lnet/minecraft/class_9355;method_58165(Lnet/minecraft/class_2096$class_2100;)Lnet/minecraft/class_9355;official aLkt;a(Lcx$d;)Lkt;
-
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). -
durability
Returns the value of thedurabilityrecord component.- Returns:
- the value of the
durabilityrecord component
-
damage
Returns the value of thedamagerecord component.- Returns:
- the value of the
damagerecord component
-