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 official ceintermediary net/minecraft/class_9355named net/minecraft/predicate/item/DamagePredicateofficial cintermediary comp_2459named durabilityofficial dintermediary comp_2460named damage
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.predicate.item.ItemSubPredicate
ItemSubPredicate.Type<T extends ItemSubPredicate> -
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.item.ItemSubPredicate
PREDICATES_MAP_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.booleanfinal StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.predicate.item.ComponentSubPredicate
test
-
Field Details
-
durability
The field for thedurabilityrecord component. -
damage
The field for thedamagerecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector official aLce;a:Lcom/mojang/serialization/Codec;intermediary field_49798Lnet/minecraft/class_9355;field_49798:Lcom/mojang/serialization/Codec;named CODECLnet/minecraft/predicate/item/DamagePredicate;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
DamagePredicate
-
-
Method Details
-
getComponentType
- Specified by:
getComponentTypein interfaceComponentSubPredicate<Integer>- Mappings:
Namespace Name Mixin selector official aLdi;a()Lkd;intermediary method_58163Lnet/minecraft/class_9365;method_58163()Lnet/minecraft/class_9331;named getComponentTypeLnet/minecraft/predicate/item/ComponentSubPredicate;getComponentType()Lnet/minecraft/component/DataComponentType;
-
test
- Specified by:
testin interfaceComponentSubPredicate<Integer>- Mappings:
Namespace Name Mixin selector official aLce;a(Lcuh;Ljava/lang/Integer;)Zintermediary method_58166Lnet/minecraft/class_9355;method_58166(Lnet/minecraft/class_1799;Ljava/lang/Integer;)Znamed testLnet/minecraft/predicate/item/DamagePredicate;test(Lnet/minecraft/item/ItemStack;Ljava/lang/Integer;)Z
-
durability
- Mappings:
Namespace Name Mixin selector official aLce;a(Lcu$d;)Lce;intermediary method_58165Lnet/minecraft/class_9355;method_58165(Lnet/minecraft/class_2096$class_2100;)Lnet/minecraft/class_9355;named durabilityLnet/minecraft/predicate/item/DamagePredicate;durability(Lnet/minecraft/predicate/NumberRange$IntRange;)Lnet/minecraft/predicate/item/DamagePredicate;
-
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
-