Record Class LocationPredicate
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.LocationPredicate
public record LocationPredicate(Optional<LocationPredicate.PositionPredicate> position, Optional<HolderSet<Biome>> biomes, Optional<HolderSet<Structure>> structures, Optional<ResourceKey<Level>> dimension, Optional<Boolean> smokey, Optional<LightPredicate> light, Optional<BlockPredicate> block, Optional<FluidPredicate> fluid)
extends Record
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class(package private) static final record -
Field Summary
FieldsModifier and TypeFieldDescriptionThe field for thebiomesrecord component.private final Optional<BlockPredicate> The field for theblockrecord component.static final com.mojang.serialization.Codec<LocationPredicate> private final Optional<ResourceKey<Level>> The field for thedimensionrecord component.private final Optional<FluidPredicate> The field for thefluidrecord component.private final Optional<LightPredicate> The field for thelightrecord component.private final Optional<LocationPredicate.PositionPredicate> The field for thepositionrecord component.The field for thesmokeyrecord component.The field for thestructuresrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionLocationPredicate(Optional<LocationPredicate.PositionPredicate> position, Optional<HolderSet<Biome>> biomes, Optional<HolderSet<Structure>> structures, Optional<ResourceKey<Level>> dimension, Optional<Boolean> smokey, Optional<LightPredicate> light, Optional<BlockPredicate> block, Optional<FluidPredicate> fluid) Creates an instance of aLocationPredicaterecord class. -
Method Summary
Modifier and TypeMethodDescriptionbiomes()Returns the value of thebiomesrecord component.block()Returns the value of theblockrecord component.Returns the value of thedimensionrecord component.final booleanIndicates whether some other object is "equal to" this one.fluid()Returns the value of thefluidrecord component.final inthashCode()Returns a hash code value for this object.light()Returns the value of thelightrecord component.booleanmatches(ServerLevel p_52618_, double p_52619_, double p_52620_, double p_52621_) position()Returns the value of thepositionrecord component.smokey()Returns the value of thesmokeyrecord component.Returns the value of thestructuresrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
position
The field for thepositionrecord component. -
biomes
The field for thebiomesrecord component. -
structures
The field for thestructuresrecord component. -
dimension
The field for thedimensionrecord component. -
smokey
The field for thesmokeyrecord component. -
light
The field for thelightrecord component. -
block
The field for theblockrecord component. -
fluid
The field for thefluidrecord component. -
CODEC
-
-
Constructor Details
-
LocationPredicate
public LocationPredicate(Optional<LocationPredicate.PositionPredicate> position, Optional<HolderSet<Biome>> biomes, Optional<HolderSet<Structure>> structures, Optional<ResourceKey<Level>> dimension, Optional<Boolean> smokey, Optional<LightPredicate> light, Optional<BlockPredicate> block, Optional<FluidPredicate> fluid) Creates an instance of aLocationPredicaterecord class.- Parameters:
position- the value for thepositionrecord componentbiomes- the value for thebiomesrecord componentstructures- the value for thestructuresrecord componentdimension- the value for thedimensionrecord componentsmokey- the value for thesmokeyrecord componentlight- the value for thelightrecord componentblock- the value for theblockrecord componentfluid- the value for thefluidrecord component
-
-
Method Details
-
matches
-
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). -
position
Returns the value of thepositionrecord component.- Returns:
- the value of the
positionrecord component
-
biomes
Returns the value of thebiomesrecord component.- Returns:
- the value of the
biomesrecord component
-
structures
Returns the value of thestructuresrecord component.- Returns:
- the value of the
structuresrecord component
-
dimension
Returns the value of thedimensionrecord component.- Returns:
- the value of the
dimensionrecord component
-
smokey
Returns the value of thesmokeyrecord component.- Returns:
- the value of the
smokeyrecord component
-
light
Returns the value of thelightrecord component.- Returns:
- the value of the
lightrecord component
-
block
Returns the value of theblockrecord component.- Returns:
- the value of the
blockrecord component
-
fluid
Returns the value of thefluidrecord component.- Returns:
- the value of the
fluidrecord component
-