Package net.minecraft.predicate.item
Record Class TrimPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.TrimPredicate
- Record Components:
- material-
- pattern-
- All Implemented Interfaces:
- ComponentSubPredicate<ArmorTrim>,- ItemSubPredicate
public record TrimPredicate(Optional<RegistryEntryList<ArmorTrimMaterial>> material, Optional<RegistryEntryList<ArmorTrimPattern>> pattern)
extends Record
implements ComponentSubPredicate<ArmorTrim>
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/item/TrimPredicate- intermediary - net/minecraft/class_9660- official - cy- named - material- intermediary - comp_2638- official - c- named - pattern- intermediary - comp_2639- 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<TrimPredicate> private final Optional<RegistryEntryList<ArmorTrimMaterial>> The field for thematerialrecord component.private final Optional<RegistryEntryList<ArmorTrimPattern>> The field for thepatternrecord component.Fields inherited from interface net.minecraft.predicate.item.ItemSubPredicatePREDICATES_MAP_CODEC
- 
Constructor SummaryConstructorsConstructorDescriptionTrimPredicate(Optional<RegistryEntryList<ArmorTrimMaterial>> optional, Optional<RegistryEntryList<ArmorTrimPattern>> optional2) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.material()Returns the value of thematerialrecord component.pattern()Returns the value of thepatternrecord component.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- 
materialThe field for thematerialrecord component.
- 
patternThe field for thepatternrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/predicate/item/TrimPredicate;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_51394- Lnet/minecraft/class_9660;field_51394:Lcom/mojang/serialization/Codec;- official - a- Lcy;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
TrimPredicatepublic TrimPredicate(Optional<RegistryEntryList<ArmorTrimMaterial>> optional, Optional<RegistryEntryList<ArmorTrimPattern>> optional2) 
 
- 
- 
Method Details- 
getComponentType- Specified by:
- getComponentTypein interface- ComponentSubPredicate<ArmorTrim>
- 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<ArmorTrim>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/item/TrimPredicate;test(Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/equipment/trim/ArmorTrim;)Z- intermediary - method_59686- Lnet/minecraft/class_9660;method_59686(Lnet/minecraft/class_1799;Lnet/minecraft/class_8053;)Z- official - a- Lcy;a(Lcwq;Ldex;)Z
 
- 
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).
- 
materialReturns the value of thematerialrecord component.- Returns:
- the value of the materialrecord component
 
- 
patternReturns the value of thepatternrecord component.- Returns:
- the value of the patternrecord component
 
 
-