Package net.minecraft.predicate.item
Record Class AttributeModifiersPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.AttributeModifiersPredicate
- Record Components:
modifiers
-
- All Implemented Interfaces:
ComponentSubPredicate<AttributeModifiersComponent>
,ItemSubPredicate
public record AttributeModifiersPredicate(Optional<CollectionPredicate<AttributeModifiersComponent.Entry,AttributeModifiersPredicate.AttributeModifierPredicate>> modifiers)
extends Record
implements ComponentSubPredicate<AttributeModifiersComponent>
- Mappings:
Namespace Name named net/minecraft/predicate/item/AttributeModifiersPredicate
intermediary net/minecraft/class_9653
official cf
named modifiers
intermediary comp_2623
official c
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final record
Nested classes/interfaces inherited from interface net.minecraft.predicate.item.ItemSubPredicate
ItemSubPredicate.Type<T extends ItemSubPredicate>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<AttributeModifiersPredicate> private final Optional
<CollectionPredicate<AttributeModifiersComponent.Entry, AttributeModifiersPredicate.AttributeModifierPredicate>> The field for themodifiers
record component.Fields inherited from interface net.minecraft.predicate.item.ItemSubPredicate
PREDICATES_MAP_CODEC
-
Constructor Summary
ConstructorDescriptionAttributeModifiersPredicate
(Optional<CollectionPredicate<AttributeModifiersComponent.Entry, AttributeModifiersPredicate.AttributeModifierPredicate>> optional) -
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.Optional
<CollectionPredicate<AttributeModifiersComponent.Entry, AttributeModifiersPredicate.AttributeModifierPredicate>> Returns the value of themodifiers
record component.boolean
test
(ItemStack itemStack, AttributeModifiersComponent attributeModifiersComponent) final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.predicate.item.ComponentSubPredicate
test
-
Field Details
-
modifiers
private final Optional<CollectionPredicate<AttributeModifiersComponent.Entry,AttributeModifiersPredicate.AttributeModifierPredicate>> modifiersThe field for themodifiers
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/predicate/item/AttributeModifiersPredicate;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_51378
Lnet/minecraft/class_9653;field_51378:Lcom/mojang/serialization/Codec;
official a
Lcf;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
AttributeModifiersPredicate
public AttributeModifiersPredicate(Optional<CollectionPredicate<AttributeModifiersComponent.Entry, AttributeModifiersPredicate.AttributeModifierPredicate>> optional)
-
-
Method Details
-
getComponentType
- Specified by:
getComponentType
in interfaceComponentSubPredicate<AttributeModifiersComponent>
- Mappings:
Namespace Name Mixin selector named getComponentType
Lnet/minecraft/predicate/item/ComponentSubPredicate;getComponentType()Lnet/minecraft/component/DataComponentType;
intermediary method_58163
Lnet/minecraft/class_9365;method_58163()Lnet/minecraft/class_9331;
official a
Lds;a()Lkl;
-
test
- Specified by:
test
in interfaceComponentSubPredicate<AttributeModifiersComponent>
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/predicate/item/AttributeModifiersPredicate;test(Lnet/minecraft/item/ItemStack;Lnet/minecraft/component/type/AttributeModifiersComponent;)Z
intermediary method_59669
Lnet/minecraft/class_9653;method_59669(Lnet/minecraft/class_1799;Lnet/minecraft/class_9285;)Z
official a
Lcf;a(Lcur;Lcxm;)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)
. -
modifiers
public Optional<CollectionPredicate<AttributeModifiersComponent.Entry,AttributeModifiersPredicate.AttributeModifierPredicate>> modifiers()Returns the value of themodifiers
record component.- Returns:
- the value of the
modifiers
record component
-