Package net.minecraft.predicate.item
Record Class ItemPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.ItemPredicate
- Record Components:
items
-count
-components
-subPredicates
-
public record ItemPredicate(Optional<RegistryEntryList<Item>> items, NumberRange.IntRange count, ComponentPredicate components, Map<ItemSubPredicate.Type<?>,ItemSubPredicate> subPredicates)
extends Record
implements Predicate<ItemStack>
- Mappings:
Namespace Name named net/minecraft/predicate/item/ItemPredicate
intermediary net/minecraft/class_2073
official cs
named items
intermediary comp_1784
official b
named count
intermediary comp_1785
official c
named components
intermediary comp_2374
official d
named subPredicates
intermediary comp_2462
official e
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<ItemPredicate> private final ComponentPredicate
The field for thecomponents
record component.private final NumberRange.IntRange
The field for thecount
record component.private final Optional
<RegistryEntryList<Item>> The field for theitems
record component.private final Map
<ItemSubPredicate.Type<?>, ItemSubPredicate> The field for thesubPredicates
record component. -
Constructor Summary
ConstructorDescriptionItemPredicate
(Optional<RegistryEntryList<Item>> optional, NumberRange.IntRange intRange, ComponentPredicate componentPredicate, Map<ItemSubPredicate.Type<?>, ItemSubPredicate> map) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecomponents
record component.count()
Returns the value of thecount
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.items()
Returns the value of theitems
record component.Returns the value of thesubPredicates
record component.boolean
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
items
The field for theitems
record component. -
count
The field for thecount
record component. -
components
The field for thecomponents
record component. -
subPredicates
The field for thesubPredicates
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/predicate/item/ItemPredicate;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_45754
Lnet/minecraft/class_2073;field_45754:Lcom/mojang/serialization/Codec;
official a
Lcs;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
ItemPredicate
public ItemPredicate(Optional<RegistryEntryList<Item>> optional, NumberRange.IntRange intRange, ComponentPredicate componentPredicate, Map<ItemSubPredicate.Type<?>, ItemSubPredicate> map)
-
-
Method Details
-
test
- Specified by:
test
in interfacePredicate<ItemStack>
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/predicate/item/ItemPredicate;test(Lnet/minecraft/item/ItemStack;)Z
intermediary method_8970
Lnet/minecraft/class_2073;method_8970(Lnet/minecraft/class_1799;)Z
official a
Lcs;a(Lcuq;)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)
. -
items
Returns the value of theitems
record component.- Returns:
- the value of the
items
record component
-
count
Returns the value of thecount
record component.- Returns:
- the value of the
count
record component
-
components
Returns the value of thecomponents
record component.- Returns:
- the value of the
components
record component
-
subPredicates
Returns the value of thesubPredicates
record component.- Returns:
- the value of the
subPredicates
record component
-