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:
- ComponentSubPredicate<Integer>,- ItemSubPredicate
public record DamagePredicate(NumberRange.IntRange durability, NumberRange.IntRange damage)
extends Record
implements ComponentSubPredicate<Integer>
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/item/DamagePredicate- intermediary - net/minecraft/class_9355- official - co- named - durability- intermediary - comp_2459- official - c- named - damage- intermediary - comp_2460- 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<DamagePredicate> private final NumberRange.IntRangeThe field for thedamagerecord component.private final NumberRange.IntRangeThe field for thedurabilityrecord component.Fields inherited from interface net.minecraft.predicate.item.ItemSubPredicatePREDICATES_MAP_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionDamagePredicate(NumberRange.IntRange intRange, NumberRange.IntRange intRange2) 
- 
Method SummaryModifier 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.booleanfinal 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- 
durabilityThe field for thedurabilityrecord component.
- 
damageThe field for thedamagerecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/predicate/item/DamagePredicate;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_49798- Lnet/minecraft/class_9355;field_49798:Lcom/mojang/serialization/Codec;- official - a- Lco;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
DamagePredicate
 
- 
- 
Method Details- 
getComponentType- Specified by:
- getComponentTypein interface- ComponentSubPredicate<Integer>
- 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<Integer>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/item/DamagePredicate;test(Lnet/minecraft/item/ItemStack;Ljava/lang/Integer;)Z- intermediary - method_58166- Lnet/minecraft/class_9355;method_58166(Lnet/minecraft/class_1799;Ljava/lang/Integer;)Z- official - a- Lco;a(Lcwq;Ljava/lang/Integer;)Z
 
- 
durability- Mappings:
- Namespace - Name - Mixin selector - named - durability- Lnet/minecraft/predicate/item/DamagePredicate;durability(Lnet/minecraft/predicate/NumberRange$IntRange;)Lnet/minecraft/predicate/item/DamagePredicate;- intermediary - method_58165- Lnet/minecraft/class_9355;method_58165(Lnet/minecraft/class_2096$class_2100;)Lnet/minecraft/class_9355;- official - a- Lco;a(Ldk$d;)Lco;
 
- 
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).
- 
durabilityReturns the value of thedurabilityrecord component.- Returns:
- the value of the durabilityrecord component
 
- 
damageReturns the value of thedamagerecord component.- Returns:
- the value of the damagerecord component
 
 
-