Package net.minecraft
Record Class class_9656
java.lang.Object
java.lang.Record
net.minecraft.class_9656
- Record Components:
c
-
- All Implemented Interfaces:
ComponentSubPredicate<ContainerComponent>
,ItemSubPredicate
public record class_9656(Optional<class_9648<ItemStack,ItemPredicate>> c)
extends Record
implements ComponentSubPredicate<ContainerComponent>
- Mappings:
Namespace Name named net/minecraft/class_9656
intermediary net/minecraft/class_9656
official ch
named c
intermediary comp_2631
official c
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.predicate.item.ItemSubPredicate
ItemSubPredicate.Type<T extends ItemSubPredicate>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Optional
<class_9648<ItemStack, ItemPredicate>> The field for thec
record component.static final com.mojang.serialization.Codec
<class_9656> Fields inherited from interface net.minecraft.predicate.item.ItemSubPredicate
PREDICATES_MAP_CODEC
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionc()
Returns the value of thec
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.boolean
test
(ItemStack itemStack, ContainerComponent containerComponent) 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
-
c
The field for thec
record component. -
field_51381
- Mappings:
Namespace Name Mixin selector named field_51381
Lnet/minecraft/class_9656;field_51381:Lcom/mojang/serialization/Codec;
intermediary field_51381
Lnet/minecraft/class_9656;field_51381:Lcom/mojang/serialization/Codec;
official a
Lch;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
class_9656
-
-
Method Details
-
getComponentType
- Specified by:
getComponentType
in interfaceComponentSubPredicate<ContainerComponent>
- 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<ContainerComponent>
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/class_9656;test(Lnet/minecraft/item/ItemStack;Lnet/minecraft/component/type/ContainerComponent;)Z
intermediary method_59675
Lnet/minecraft/class_9656;method_59675(Lnet/minecraft/class_1799;Lnet/minecraft/class_9288;)Z
official a
Lch;a(Lcuk;Lcxg;)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)
. -
c
Returns the value of thec
record component.- Returns:
- the value of the
c
record component
-