Package net.minecraft.predicate.item
Record Class WritableBookContentPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.item.WritableBookContentPredicate
- Record Components:
pages
-
- All Implemented Interfaces:
ComponentSubPredicate<WritableBookContentComponent>
,ItemSubPredicate
public record WritableBookContentPredicate(Optional<CollectionPredicate<RawFilteredPair<String>,WritableBookContentPredicate.RawStringPredicate>> pages)
extends Record
implements ComponentSubPredicate<WritableBookContentComponent>
- Mappings:
Namespace Name named net/minecraft/predicate/item/WritableBookContentPredicate
intermediary net/minecraft/class_9661
official cu
named pages
intermediary comp_2640
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
<WritableBookContentPredicate> private final Optional
<CollectionPredicate<RawFilteredPair<String>, WritableBookContentPredicate.RawStringPredicate>> The field for thepages
record component.Fields inherited from interface net.minecraft.predicate.item.ItemSubPredicate
PREDICATES_MAP_CODEC
-
Constructor Summary
ConstructorDescriptionWritableBookContentPredicate
(Optional<CollectionPredicate<RawFilteredPair<String>, WritableBookContentPredicate.RawStringPredicate>> 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<RawFilteredPair<String>, WritableBookContentPredicate.RawStringPredicate>> pages()
Returns the value of thepages
record component.boolean
test
(ItemStack itemStack, WritableBookContentComponent writableBookContentComponent) 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
-
pages
private final Optional<CollectionPredicate<RawFilteredPair<String>,WritableBookContentPredicate.RawStringPredicate>> pagesThe field for thepages
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/predicate/item/WritableBookContentPredicate;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_51395
Lnet/minecraft/class_9661;field_51395:Lcom/mojang/serialization/Codec;
official a
Lcu;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
WritableBookContentPredicate
public WritableBookContentPredicate(Optional<CollectionPredicate<RawFilteredPair<String>, WritableBookContentPredicate.RawStringPredicate>> optional)
-
-
Method Details
-
getComponentType
- Specified by:
getComponentType
in interfaceComponentSubPredicate<WritableBookContentComponent>
- 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<WritableBookContentComponent>
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/predicate/item/WritableBookContentPredicate;test(Lnet/minecraft/item/ItemStack;Lnet/minecraft/component/type/WritableBookContentComponent;)Z
intermediary method_59688
Lnet/minecraft/class_9661;method_59688(Lnet/minecraft/class_1799;Lnet/minecraft/class_9301;)Z
official a
Lcu;a(Lcur;Lcxz;)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)
. -
pages
public Optional<CollectionPredicate<RawFilteredPair<String>,WritableBookContentPredicate.RawStringPredicate>> pages()Returns the value of thepages
record component.- Returns:
- the value of the
pages
record component
-