Package net.minecraft.predicate
Record Class BlockPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.BlockPredicate
- Record Components:
blocks-state-nbt-components-
public record BlockPredicate(Optional<RegistryEntryList<Block>> blocks, Optional<StatePredicate> state, Optional<NbtPredicate> nbt, ComponentsPredicate components)
extends Record
- Mappings:
Namespace Name named net/minecraft/predicate/BlockPredicateintermediary net/minecraft/class_4550official aznamed blocksintermediary comp_1732official cnamed stateintermediary comp_1733official dnamed nbtintermediary comp_1734official enamed componentsintermediary comp_3832official f
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Optional<RegistryEntryList<Block>> The field for theblocksrecord component.static final com.mojang.serialization.Codec<BlockPredicate> private final ComponentsPredicateThe field for thecomponentsrecord component.private final Optional<NbtPredicate> The field for thenbtrecord component.static final PacketCodec<RegistryByteBuf, BlockPredicate> private final Optional<StatePredicate> The field for thestaterecord component. -
Constructor Summary
ConstructorsConstructorDescriptionBlockPredicate(Optional<RegistryEntryList<Block>> optional, Optional<StatePredicate> optional2, Optional<NbtPredicate> optional3, ComponentsPredicate componentsPredicate) -
Method Summary
Modifier and TypeMethodDescriptionblocks()Returns the value of theblocksrecord component.Returns the value of thecomponentsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanhasNbt()nbt()Returns the value of thenbtrecord component.state()Returns the value of thestaterecord component.booleantest(CachedBlockPosition pos) booleantest(ServerWorld world, BlockPos pos) private static booleantestComponents(@Nullable BlockEntity blockEntity, ComponentsPredicate components) private static booleantestNbt(WorldView world, @Nullable BlockEntity blockEntity, NbtPredicate nbtPredicate) private booleantestState(BlockState state) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
blocks
The field for theblocksrecord component. -
state
The field for thestaterecord component. -
nbt
The field for thenbtrecord component. -
components
The field for thecomponentsrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/predicate/BlockPredicate;CODEC:Lcom/mojang/serialization/Codec;intermediary field_45723Lnet/minecraft/class_4550;field_45723:Lcom/mojang/serialization/Codec;official aLaz;a:Lcom/mojang/serialization/Codec;
-
PACKET_CODEC
- Mappings:
Namespace Name Mixin selector named PACKET_CODECLnet/minecraft/predicate/BlockPredicate;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;intermediary field_49181Lnet/minecraft/class_4550;field_49181:Lnet/minecraft/class_9139;official bLaz;b:Lze;
-
-
Constructor Details
-
BlockPredicate
public BlockPredicate(Optional<RegistryEntryList<Block>> optional, Optional<StatePredicate> optional2, Optional<NbtPredicate> optional3, ComponentsPredicate componentsPredicate)
-
-
Method Details
-
test
- Mappings:
Namespace Name Mixin selector named testLnet/minecraft/predicate/BlockPredicate;test(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/util/math/BlockPos;)Zintermediary method_22454Lnet/minecraft/class_4550;method_22454(Lnet/minecraft/class_3218;Lnet/minecraft/class_2338;)Zofficial aLaz;a(Lasb;Liw;)Z
-
test
- Mappings:
Namespace Name Mixin selector named testLnet/minecraft/predicate/BlockPredicate;test(Lnet/minecraft/block/pattern/CachedBlockPosition;)Zintermediary method_57147Lnet/minecraft/class_4550;method_57147(Lnet/minecraft/class_2694;)Zofficial aLaz;a(Lebu;)Z
-
testState
- Mappings:
Namespace Name Mixin selector named testStateLnet/minecraft/predicate/BlockPredicate;testState(Lnet/minecraft/block/BlockState;)Zintermediary method_57146Lnet/minecraft/class_4550;method_57146(Lnet/minecraft/class_2680;)Zofficial aLaz;a(Lebq;)Z
-
testNbt
private static boolean testNbt(WorldView world, @Nullable @Nullable BlockEntity blockEntity, NbtPredicate nbtPredicate) - Mappings:
Namespace Name Mixin selector named testNbtLnet/minecraft/predicate/BlockPredicate;testNbt(Lnet/minecraft/world/WorldView;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/predicate/NbtPredicate;)Zintermediary method_57145Lnet/minecraft/class_4550;method_57145(Lnet/minecraft/class_4538;Lnet/minecraft/class_2586;Lnet/minecraft/class_2105;)Zofficial aLaz;a(Ldkm;Ldyo;Lda;)Z
-
testComponents
private static boolean testComponents(@Nullable @Nullable BlockEntity blockEntity, ComponentsPredicate components) - Mappings:
Namespace Name Mixin selector named testComponentsLnet/minecraft/predicate/BlockPredicate;testComponents(Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/predicate/component/ComponentsPredicate;)Zintermediary method_68677Lnet/minecraft/class_4550;method_68677(Lnet/minecraft/class_2586;Lnet/minecraft/class_10914;)Zofficial aLaz;a(Ldyo;Lbo;)Z
-
hasNbt
public boolean hasNbt()- Mappings:
Namespace Name Mixin selector named hasNbtLnet/minecraft/predicate/BlockPredicate;hasNbt()Zintermediary method_57143Lnet/minecraft/class_4550;method_57143()Zofficial aLaz;a()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). -
blocks
Returns the value of theblocksrecord component.- Returns:
- the value of the
blocksrecord component
-
state
Returns the value of thestaterecord component.- Returns:
- the value of the
staterecord component
-
nbt
Returns the value of thenbtrecord component.- Returns:
- the value of the
nbtrecord component
-
components
Returns the value of thecomponentsrecord component.- Returns:
- the value of the
componentsrecord component
-